Skip to content

Instantly share code, notes, and snippets.

@rms1000watt
Created May 20, 2020 17:11
Show Gist options
  • Save rms1000watt/8893e776eb8391d05f57e37c969191b6 to your computer and use it in GitHub Desktop.
Save rms1000watt/8893e776eb8391d05f57e37c969191b6 to your computer and use it in GitHub Desktop.
hello world to helm
#!/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