-
Notifications
You must be signed in to change notification settings - Fork 0
/
vault.values.openshift.yaml
50 lines (40 loc) · 1.44 KB
/
vault.values.openshift.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# These overrides are appropriate defaults for deploying this chart on OpenShift
global:
openshift: true
tlsDisable: true
injector:
image:
repository: "registry.connect.redhat.com/hashicorp/vault-k8s"
tag: "0.14.0-ubi"
agentImage:
repository: "registry.connect.redhat.com/hashicorp/vault"
tag: "1.8.4-ubi"
# Configures the log verbosity of the injector.
# Supported log levels include: trace, debug, info, warn, error
logLevel: "trace"
# If true, will enable a node exporter metrics endpoint at /metrics.
metrics:
enabled: true
# Label for observing namespace
namespaceSelector:
matchLabels:
vaultinjection: enabled
server:
image:
repository: "registry.connect.redhat.com/hashicorp/vault"
tag: "1.8.4-ubi"
# Configure the logging verbosity for the Vault server.
# Supported log levels include: trace, debug, info, warn, error
logLevel: "trace"
# OpenShift only - create a route to expose the service
# The created route will be of type passthrough
route:
enabled: true
host: ""
# Run Vault in "dev" mode. This requires no further setup, no state management,
# and no initialization. This is useful for experimenting with Vault without
# needing to unseal, store keys, et. al. All data is lost on restart - do not
# use dev mode for anything other than experimenting.
# See https://www.vaultproject.io/docs/concepts/dev-server.html to know more
dev:
enabled: true