Skip to content

Latest commit

 

History

History
37 lines (25 loc) · 826 Bytes

helm.md

File metadata and controls

37 lines (25 loc) · 826 Bytes

helm

helm plugins

Other

Developer Experience

Setup

The simplest way to use helm is to just mount the $HOME/.kube directory in the container.

Start the docker image:

docker run -it --rm \
  --mount type=bind,source=$HOME/.cache,target=/home/anvil/.cache \
  --mount type=bind,source=$HOME/.ssh,target=/home/anvil/.ssh \
  --mount type=bind,source="$(pwd)",target=/home/anvil/workdir \
  --mount type=bind,source=$HOME/.kube,target=/home/anvil/.kube \
  --workdir /home/anvil/workdir \
  saicoss/anvil:latest \
  bash

helm 3

Inside the Docker container you can use:

helm list -a --all-namespaces
helm repo add stable http://storage.googleapis.com/kubernetes-charts-stable