Helm/Vault Secrets Operator: Difference between revisions
Jump to navigation
Jump to search
| Line 48: | Line 48: | ||
</syntaxhighlight> | </syntaxhighlight> | ||
|- | |- | ||
!scope='col' | !scope='col'| Install | ||
!scope='col'| Notes | |||
|- | |- | ||
|valign='top | |valign='top'| | ||
<syntaxhighlight lang='yaml'> | <syntaxhighlight lang='yaml'> | ||
cat <<'YML' | \ | cat <<'YML' | \ | ||
helm -n=vault-secrets-operator-system upgrade -i vso hashicorp/vault-secrets-operator --version=1.2.0 -f - | helm -n=vault-secrets-operator-system upgrade \ | ||
-i vso hashicorp/vault-secrets-operator --version=1.2.0 -f - | |||
--- | --- | ||
controller: | controller: | ||
| Line 105: | Line 107: | ||
YML | YML | ||
</syntaxhighlight> | </syntaxhighlight> | ||
|valign='top'| | |||
|- | |- | ||
!scope='col'| Verify | !scope='col'| Verify | ||
Revision as of 02:03, 22 January 2026
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 | Notes |
cat <<'YML' | \
helm -n=vault-secrets-operator-system upgrade \
-i vso hashicorp/vault-secrets-operator --version=1.2.0 -f -
---
controller:
replicas: 1
kubeRbacProxy:
image:
repository: quay.io/brancz/kube-rbac-proxy
tag: v0.18.1
resources:
limits:
cpu: 500m
memory: 128Mi
requests:
cpu: 5m
memory: 64Mi
manager:
image:
repository: hashicorp/vault-secrets-operator
tag: 1.2.0
resources:
limits:
cpu: 500m
memory: 128Mi
requests:
cpu: 10m
memory: 64Mi
hooks:
resources:
limits:
cpu: 500m
memory: 128Mi
requests:
cpu: 10m
memory: 64Mi
csi:
enabled: false
driver:
image:
repository: hashicorp/vault-secrets-operator-csi
tag: 1.0.1
livenessProbe:
image:
repository: registry.k8s.io/sig-storage/livenessprobe
tag: v2.16.0
nodeDriverRegistrar:
image:
repository: registry.k8s.io/sig-storage/csi-node-driver-registrar
tag: v2.14.0
YML
|
|
| Verify | |
helm -n=vault status vso
helm -n=vault get manifest vso
|
|
References
|
References | ||
|---|---|---|