You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Execute the following to get the complete list of values available:
21
+
22
+
```bash
23
+
helm show values finleap-connect/vault-operator --version <VERSION>
24
+
```
25
+
26
+
Configure at least the following settings within your `values.yaml` :
27
+
```yaml
28
+
# Configure Vault connection
29
+
vault:
30
+
addr: ""# Address of the Vault instance
31
+
tls:
32
+
secretName: ""# Specify secret containing CA to access Vault
33
+
credentials:
34
+
secretName: ""# Specify secret containing AppRole credentials as fields VAULT_ROLE_ID and VAULT_SECRET_ID, see https://www.vaultproject.io/docs/auth/approle
35
+
namespace: ""# Which Vault namespace to connect to
Copy file name to clipboardExpand all lines: charts/vault-operator/values.yaml
+6-4Lines changed: 6 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -36,16 +36,18 @@ securityContext: {}
36
36
37
37
terminationGracePeriodSeconds: 10
38
38
39
-
# Set this to false for GKE, which runs a CertManager, which only
39
+
# Set this to false for older CertManager, which only
40
40
# supports the cert-manager.io/v1 API
41
41
useOldCertManager: true
42
42
43
43
# Configure Vault connection
44
44
vault:
45
-
addr: ""#Address of the Vault instance
45
+
addr: ""#Required address of Vault
46
46
tls:
47
-
secretName: ""# Specify secret containing CA to access Vault
48
-
namespace: ""# Which Vault namespace to connect to
47
+
secretName: ""# Required secret containing CA to access Vault
48
+
credentials:
49
+
secretName: ""# Required secret containing AppRole credentials as fields VAULT_ROLE_ID and VAULT_SECRET_ID, see https://www.vaultproject.io/docs/auth/approle
50
+
namespace: ""# Optional Vault namespace to connect to
49
51
50
52
# Set which paths in Vault are allowed to be accessed from any namespace
0 commit comments