Skip to content

Instantly share code, notes, and snippets.

@elsonrodriguez
Last active June 16, 2023 14:46
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save elsonrodriguez/6e9afea8c0afbaf9cf59 to your computer and use it in GitHub Desktop.
Save elsonrodriguez/6e9afea8c0afbaf9cf59 to your computer and use it in GitHub Desktop.
Example README.md for a helm Chart.

foo

This chart installs foo, the app with the most bar. This is just a standard foo setup.

Configuration

Secrets

The following secrets are configurable:

  • username
  • password

Labels

You can use the following labels for maximum fun.

  • lol=cat

Environment Variables

The foo pods also have the following environment variables:

  • getfired
  • false: does something totally reasonable.
  • true: close your laptop and walk out.

Usage

Once installed, you can access the application by (hitting a url | executing a command) as follows:

export NODEPORT=`kubectl get svc --selector='app=foo,heritage=helm' --output=template --template="{{ with index .items 0}}{{with index .spec.ports 0 }}{{.nodePort}}{{end}}{{end}}"`
export NODE=`kubectl get nodes --output=template --template="{{with index .items 0 }}{{.metadata.name}}{{end}}"`

curl http://$NODE:$NODEPORT

--or--

export PODNAME=`kubectl get pod --selector='app=foo,heritage=helm' --output=template --template="{{with index .items 0}}{{.metadata.name}}{{end}}"

kubectl exec $PODNAME command

The foo pods can also be scaled:

kubectl scale rc foo --replicas=10

More Info

The Baz Foundation is the best resource for all things Foo:

http://baz.org

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment