From 4bffc4f873ab1411b280ea6e0add216b306a98c7 Mon Sep 17 00:00:00 2001 From: rahug20 <62970058+rahug20@users.noreply.github.com> Date: Thu, 2 Apr 2020 14:02:01 -0400 Subject: [PATCH 1/2] Update Grey Matter Installation Training.md --- .../Grey Matter Installation Training.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/training/2. Grey Matter Installation/Grey Matter Installation Training.md b/training/2. Grey Matter Installation/Grey Matter Installation Training.md index 716420b..c2b96ea 100755 --- a/training/2. Grey Matter Installation/Grey Matter Installation Training.md +++ b/training/2. Grey Matter Installation/Grey Matter Installation Training.md @@ -51,9 +51,11 @@ sudo snap install kubectl --classic sudo snap install helm --classic --channel=2.16 # Minikube -wget https://storage.googleapis.com/minikube/releases/latest/minikube-linux-amd64 -chmod +x minikube-linux-amd64 -sudo mv minikube-linux-amd64 /usr/local/bin/minikube +curl -Lo minikube https://storage.googleapis.com/minikube/releases/latest/minikube-linux-amd64 \ + && chmod +x minikube + +sudo mkdir -p /usr/local/bin/ +sudo install minikube /usr/local/bin/ ``` ## Minikube setup @@ -126,7 +128,7 @@ Save your changes to these two files and proceed. We're now going to add another Helm repository, this time for Grey Matter itself, and use it to install the latest release. -You will need your Docker registry username and password again. +You will need your Nexus email and password again. ``` bash sudo helm repo add decipher https://nexus.production.deciphernow.com/repository/helm-hosted --username 'YOUR USERNAME' --password 'YOUR PASSWORD' From ae100980028e99ba0aa6cb6912bea3c3f2985d73 Mon Sep 17 00:00:00 2001 From: rahug20 <62970058+rahug20@users.noreply.github.com> Date: Thu, 2 Apr 2020 14:03:56 -0400 Subject: [PATCH 2/2] updating var --- .../Grey Matter Installation Training.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/training/2. Grey Matter Installation/Grey Matter Installation Training.md b/training/2. Grey Matter Installation/Grey Matter Installation Training.md index c2b96ea..2a7cab4 100755 --- a/training/2. Grey Matter Installation/Grey Matter Installation Training.md +++ b/training/2. Grey Matter Installation/Grey Matter Installation Training.md @@ -128,10 +128,10 @@ Save your changes to these two files and proceed. We're now going to add another Helm repository, this time for Grey Matter itself, and use it to install the latest release. -You will need your Nexus email and password again. +You will need your Nexus email and password. ``` bash -sudo helm repo add decipher https://nexus.production.deciphernow.com/repository/helm-hosted --username 'YOUR USERNAME' --password 'YOUR PASSWORD' +sudo helm repo add decipher https://nexus.production.deciphernow.com/repository/helm-hosted --username 'EMAIL' --password 'YOUR PASSWORD' sudo helm repo update ```