Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Grey Matter Installation Training.md #57

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -126,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 Docker registry username 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
```
Expand Down