8000 GitHub - astrisk/spinnaker-helm: Install Spinnaker on your kubernetes cluster with one command · GitHub
[go: up one dir, main page]

Skip to content

astrisk/spinnaker-helm

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 

Repository files navigation

Spinnaker Helm Chart

Install Spinnaker on your kubernetes cluster with one command.

Clouddriver auto-configured to deploy to the same cluster.

Ensure kubectl is pointed at your cluster

kubectl cluster-info

Initialize helm on your cluster

helm init

Clone repo and install Spinnaker in it's own namespace

git clone https://github.com/moondev/spinnaker-helm.git; cd spinnaker-helm

helm install --namespace spinnaker --name spinnaker ./spinnaker-chart

Wait until all pods are up

kubectl get pods --namespace spinnaker

use nodeIP+nodePort to access ui

kubectl get svc deck  -n demo -o wide

NAME      CLUSTER-IP      EXTERNAL-IP   PORT(S)        AGE       SELECTOR
deck      10.254.135.35   <nodes>       80:34832/TCP   37m       app=deck,tier=deck

the ui url is: http://nodeip+34832

Forward port 9000 to deck pod.

kubectl --namespace spinnaker port-forward (kubectl --namespace spinnaker get pods -l app=deck -o jsonpath='{.items[*].metadata.name}') 9000:9000

Spinnaker is now available for use at http://localhost:9000

To delete the release and remove all Spinnaker components

helm delete spinnaker --purge

Versions of Spinnaker components can be edited in spinnaker-chart/values.yaml

About

Install Spinnaker on your kubernetes cluster with one command

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • JavaScript 77.7%
  • Shell 16.5%
  • Smarty 5.8%
0