add vault VSO

This commit is contained in:
2026-05-20 08:29:09 +02:00
parent 39d46bfc0d
commit d8b3ee705d
3 changed files with 53 additions and 0 deletions

View File

@@ -3,3 +3,5 @@ namespace: kube-system
resources:
- ./vault.yaml
- ./vaultChartConfig.yaml
- ./secretOperatorConfig.yaml
- ./secretsOperator.yaml

View File

@@ -0,0 +1,40 @@
apiVersion: helm.cattle.io/v1
kind: HelmChartConfig
metadata:
name: vault-secrets-operator
spec:
valuesContent: |-
defaultVaultConnection:
# toggles the deployment of the VaultAuthMethod CR
# @type: boolean
enabled: true
# Address of the Vault Server
# @type: string
# Example: http://vault.kube-system.svc.cluster.local:8200
address: "http://vault.kube-system.svc.cluster.local:8200"
# SkipTLSVerify for TLS connections.
# @type: boolean
skipTLSVerify: true
defaultAuthMethod:
enabled: true
# Kubernetes namespace glob patterns which are allow-listed for use with the default AuthMethod.
# @type: array<string>
allowedNamespaces:
- "*"
method: kubernetes
mount: kubernetes
kubernetes:
# Vault Auth Role to use
# This is a required field and must be setup in Vault prior to deploying the helm chart
# if `defaultAuthMethod.enabled=true`
# @type: string
role: "taskarr-role"
serviceAccount: default

View File

@@ -0,0 +1,11 @@
apiVersion: helm.cattle.io/v1
kind: HelmChart
metadata:
name: vault-secrets-operator
spec:
repo: https://helm.releases.hashicorp.com
chart: vault-secrets-operator
targetNamespace: kube-system
version: 1.4.0
valuesContent: |-