Created
May 20, 2020 17:11
-
-
Save rms1000watt/8893e776eb8391d05f57e37c969191b6 to your computer and use it in GitHub Desktop.
hello world to helm
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 characters
| #!/usr/bin/env bash | |
| # install helm on OS X | |
| brew install helm | |
| # Add the bitnami charts location | |
| helm repo add bitnami https://charts.bitnami.com/bitnami | |
| # Show all the charts that bitnami manages | |
| helm search repo bitnami | |
| # Deploy redis | |
| helm install redis-1 bitnami/redis | |
| # Deploy postgres | |
| helm install postgres-1 bitnami/postgres |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment