Created
April 29, 2019 10:22
-
-
Save tkuchiki/19bc02b050052e2fdffbb31c1b10ff95 to your computer and use it in GitHub Desktop.
[WIP] Halyard install on macos
This file contains 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 characters
## Prerequire | |
- https://brew.sh/ | |
- Jave 8 >= | |
- `brew tap homebrew/cask-versions` | |
- `brew cask install java11` | |
- minio | |
- `brew install minio/stable/minio` | |
- `sudo mkdir /data/minio ; sudo chown tkuchiki /data/minio` | |
- `minio server /opt/minio` | |
## Installation | |
- https://www.spinnaker.io/setup/install/halyard/#install-on-debianubuntu-and-macos | |
```sh | |
$ sudo bash InstallHalyard.sh | |
``` | |
```sh | |
$ hal config provider kubernetes enable | |
$ hal config provider kubernetes account add docker-for-desktop --provider-version v2 --context $(kubectl config current-context) | |
$ hal config features edit --artifacts true | |
$ hal config deploy edit --type distributed --account-name docker-for-desktop | |
``` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment