-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathoverride-values.yaml
68 lines (64 loc) · 1.42 KB
/
override-values.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
global:
enabled: true
tlsDisable: true
injector:
enabled: false
metrics:
enabled: true
server:
# ignore anti-affinity for now
enabled: true
readinessProbe:
enabled: false
affinity: ''
image:
repository: hashicorp/vault
tag: 1.16.1
shareProcessNamespace: true
# Add the lograte config from a config map
volumes:
- name: logrotate-config
configMap:
name: logrotate-config
# And finally the container
extraContainers:
- name: auditlog-rotator
image: <Image URI>
imagePullPolicy: Always
env:
- name: CRONTAB
value: "*/1 * * * *"
volumeMounts:
- mountPath: /etc/logrotate.conf
name: logrotate-config
subPath: logrotate.conf
readOnly: true
- mountPath: /vault/audit
name: audit
auditStorage:
enabled: true
size: 10Gi
storageClass: null
accessMode: ReadWriteOnce
ha:
enabled: true
replicas: 1
raft:
enabled: true
config: |
ui = true
service_registration "kubernetes" {}
log_level = "trace"
log_requests_level = "trace"
raw_storage_endpoint = "true"
listener "tcp" {
address = ":8200"
cluster_address = ":8201"
tls_disable = 1
telemetry {
unauthenticated_metrics_access = true
}
}
storage "raft" {
path = "/vault/data"
}