Skip to content

Instantly share code, notes, and snippets.

@syuraj
Last active March 5, 2022 20:04
Show Gist options
  • Save syuraj/c5a9ecc02e68a0efa9e2baa8ee58887e to your computer and use it in GitHub Desktop.
Save syuraj/c5a9ecc02e68a0efa9e2baa8ee58887e to your computer and use it in GitHub Desktop.
Install Spinnaker Locally (quick steps)

Notes: Install halyard, kubernetes (eg. docker-desktop from docker). Also need an aws account for storage (unless using minio)

  • Enable Kubernetes:
    • hal config provider kubernetes enable
  • Add account:
    • hal config provider kubernetes account add local-spinnaker --context docker-desktop
    • docker-desktop is local docker context
  • Enable artifacts:
    • hal config features edit --artifacts true
  • Set storage:
    • "hal config storage s3 edit --access-key-id $YOUR_ACCESS_KEY_ID --secret-access-key"
    • "hal config storage edit --type s3"
  • Set deployment environment
    • "hal config deploy edit --type distributed --account-name $ACCOUNT"
  • Install Spinnaker
    • "hal config version edit --version 1.19.14"
    • "sudo hal deploy apply"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment