-
Notifications
You must be signed in to change notification settings - Fork 165
/
values.yaml
59 lines (51 loc) · 1.17 KB
/
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
injector:
enabled: false
server:
image:
repository: "hashicorp/vault"
tag: "1.8.4"
pullPolicy: IfNotPresent
logLevel: "info"
logFormat: "json"
resources:
requests:
memory: 256Mi
cpu: 250m
limits:
memory: 256Mi
cpu: 250m
priorityClassName: "medium-priority" # если они определены в кластере
dataStorage:
enabled: false
dev:
enabled: false
standalone:
enabled: false
ha:
enabled: true
replicas: 2
# Set the api_addr configuration for Vault HA
# See https://www.vaultproject.io/docs/configuration#api_addr
# If set to null, this will be set to the Pod IP Address
apiAddr: null
config: |
ui = true
listener "tcp" {
tls_disable = 1
address = "[::]:8200"
cluster_address = "[::]:8201"
}
storage "postgresql" {
connection_url = "postgres://vault:[email protected]:5432/vault?sslmode=disable"
ha_enabled = true
}
service_registration "kubernetes" {}
csi:
enabled: true
resources:
requests:
cpu: 50m
memory: 128Mi
limits:
cpu: 50m
memory: 128Mi