Helm/Vault Secrets Operator
helm repo add hashicorp https://helm.releases.hashicorp.com
helm repo update && helm repo list
kubectl config get-contexts
|
Helm » Context
|
Helm » Context | |
|---|---|
export KUBECONFIG="${HOME}/.kube/aws-kubeconfig.yaml"
export KUBECONFIG="${HOME}/.kube/gcp-kubeconfig.yaml"
export KUBECONFIG="${HOME}/.kube/lke-kubeconfig.yaml"
export KUBECONFIG="${HOME}/.kube/config"
|
|
Helm » Install
|
Helm » Install | |
|---|---|
helm show values hashicorp/vault-secrets-operator --version=1.1.0|less
helm show values hashicorp/vault-secrets-operator --version=1.2.0|less
| |
export KUBECONFIG="${HOME}/.kube/shahed-ab-kubeconfig.yaml"
kubectl create ns vault-secrets-operator-system || true
|
kubectl get ns|grep vault-secrets-operator-system
kubectl delete ns vault-secrets-operator-system || true
|
| Install | |
cat <<'YML' | \
helm -n=vault-secrets-operator upgrade -i vso hashicorp/vault-secrets-operator --version=1.2.0 -f -
---
YML
| |
| Verify | |
helm -n=vault status vso
helm -n=vault get manifest vso
|
|
References
|
References | ||
|---|---|---|