12 lines
337 B
Plaintext
12 lines
337 B
Plaintext
# Ref - https://developer.hashicorp.com/vault/docs/platform/k8s/helm
|
|
|
|
# Add vault repo to Helm
|
|
helm repo add hashicorp https://helm.releases.hashicorp.com
|
|
|
|
# Get chart values and customize them
|
|
helm show values hashicorp/vault > values.yaml
|
|
|
|
# Install vault
|
|
helm install vault hashicorp/vault --namespace dev-stuff --values values.yaml
|
|
|