Last active
January 14, 2018 11:38
Revisions
-
aofry revised this gist
Jan 14, 2018 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -32,7 +32,7 @@ kubectl get svc,pods -n db # open dashboard minikube dashboard helm delete pg1 --purge # remove all minikube delete -
aofry revised this gist
Jan 14, 2018 . 1 changed file with 7 additions and 3 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -22,13 +22,17 @@ helm install --name pg1 \ --set postgresPassword=some-password,postgresDatabase=db1 \ stable/postgresql helm ls kubectl get svc,pods -n db # get the cluster ip and port in the browser (not so helpfull for a non http endpoint) # minikube service pg1-postgresql -n db # open dashboard minikube dashboard helm delete pg1 # remove all minikube delete -
aofry revised this gist
Jan 14, 2018 . 1 changed file with 3 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -27,5 +27,8 @@ minikube dashboard kubectl get svc,nodes -n db # get the cluster ip and port in the browser (not so helpfull for a non http endpoint) # minikube service pg1-postgresql -n db # remove all minikube delete -
aofry revised this gist
Jan 14, 2018 . 1 changed file with 13 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -16,3 +16,16 @@ helm init helm repo update helm repo list # install some postgres under db namespace helm install --name pg1 \ --namespace db \ --set postgresPassword=some-password,postgresDatabase=db1 \ stable/postgresql # open dashboard minikube dashboard kubectl get svc,nodes -n db # remove all minikube delete -
aofry created this gist
Jan 14, 2018 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,18 @@ # download binaries wget https://storage.googleapis.com/kubernetes-release/release/v1.9.0/bin/windows/amd64/kubectl.exe mv kubectl.exe mv /usr/local/bin/ wget https://github.com/kubernetes/minikube/releases/download/v0.24.1/minikube-windows-amd64 mv minikube-windows-amd64 /usr/local/bin/minikube.exe wget https://storage.googleapis.com/kubernetes-helm/helm-v2.7.2-windows-amd64.tar.gz tar xvzf helm-v2.7.2-windows-amd64.tar.gz mv windows-amd64/helm.exe /usr/local/bin/ # start minikube minikube start kubectl get svc,nodes # setup helm helm init helm repo update helm repo list