forked from aquasecurity/aqua-helm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
values.yaml
218 lines (194 loc) · 5.54 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
# Specifies the secret data for imagePullSecrets needed to fetch the private docker images
imageCredentials:
create: false
name: aqua-registry-secret # example
repositoryUriPrefix: "registry.aquasec.com" # for dockerhub - "docker.io"
registry: "registry.aquasec.com" #REQUIRED only if create is true, for dockerhub - "index.docker.io/v1/"
username: ""
password: ""
clusterRole:
roleRef: ""
# Specify the Kubernetes (k8s) platform acronym.
# Allowed values are:
# - aks: Azure Kubernetes Service
# - eks: Amazon Elastic Kubernetes Service
# - gke: Google Kubernetes Engine
# - openshift: Red Hat OpenShift/OCP
# - tkg: VMware Tanzu Kubernetes Grid
# - tkgi: VMware Tanzu Kubernetes Grid Integrated Edition
# - k8s: Plain/on-prem Vanilla Kubernetes
# - rancher: Rancher Kubernetes Platform
# - gs: Giant Swarm platform
# - k3s: k3s Kubernetes platform
# - mke: Mirantis Kubernetes Engine
platform: ""
admin:
token: ""
password: ""
db:
external:
enabled: false
name: ""
host: ""
port: ""
user: ""
password: ""
auditName: ""
auditHost: ""
auditPort: ""
auditUser: ""
auditPassword: ""
passwordFromSecret:
#Enable if loading passwords for db and audit-db from secret
enabled: false
#Specify the Password Secret name used for db password
dbPasswordName: ""
#Specify the db password key name stored in the #dbPasswordName secret
dbPasswordKey: ""
#Specify the Password Secret name used for audit db password
dbAuditPasswordName: ""
#Specify the Password Secret name used for audit db password
dbAuditPasswordKey: ""
securityContext:
runAsUser: 70
runAsGroup: 70
fsGroup: 11433
container_securityContext:
privileged: false
image:
repository: database
tag: "2022.4"
pullPolicy: Always
service:
type: ClusterIP
persistence:
enabled: true
storageClass:
size: 30Gi
accessMode: ReadWriteOnce
livenessProbe:
initialDelaySeconds: 10
timeoutSeconds: 5
failureThreshold: 3
periodSeconds: 10
successThreshold: 1
tcpSocket:
port: 5432
readinessProbe:
initialDelaySeconds: 10
timeoutSeconds: 5
failureThreshold: 3
periodSeconds: 10
successThreshold: 1
tcpSocket:
port: 5432
resources: {}
# Note: For recommendations please check the official sizing guide.
# requests:
# cpu: 3000m
# memory: 6Gi
# limits:
# cpu: 12000m
# memory: 20Gi
nodeSelector: {}
tolerations: []
affinity: {}
podAnnotations: {}
# my-annotation-key: my value; more value
# extraEnvironmentVars is a list of extra environment variables to set in the database deployments.
extraEnvironmentVars: {}
# ENV_NAME: value
# extraSecretEnvironmentVars is a list of extra environment variables to set in the database deployments.
# These variables take value from existing Secret objects.
extraSecretEnvironmentVars: []
# - envName: ENV_NAME
# secretName: name
# secretKey: key
tenantmanager:
replicaCount: 1
logLevel:
image:
repository: tenantmanager
tag: "2022.4"
pullPolicy: Always
service:
type: LoadBalancer
annotations: {}
# Note: Please change the ports according to the requirement.
ports:
- name: aqua-tenantmanager
port: 8081
targetPort: 8081
nodePort:
protocol: TCP
- name: aqua-tenantmanager-ssl
port: 443
targetPort: 8444
nodePort:
protocol: TCP
#As 443, 8443 already occupied in k3s kubernetes by traefik ingress. below are the console ports
k3sPorts:
- name: aqua-tenantmanager
port: 8081
targetPort: 8081
nodePort:
protocol: TCP
- name: aqua-tenantmanager-ssl
port: 444
targetPort: 8444
nodePort:
protocol: TCP
# default liveness and readiness probe
livenessProbe:
httpGet:
path: /
port: 8081
initialDelaySeconds: 60
periodSeconds: 30
readinessProbe:
httpGet:
path: /
port: 8081
initialDelaySeconds: 60
periodSeconds: 30
resources: {}
# Note: For recommendations please check the official sizing guide.
# requests:
# cpu: 2000m
# memory: 3Gi
# limits:
# cpu: 6000m
# memory: 10Gi
nodeSelector: {}
tolerations: []
affinity: {}
podAnnotations: {}
# my-annotation-key: my value; more value
securityContext:
runAsUser: 11431
runAsGroup: 11433
fsGroup: 11433
container_securityContext: {}
TLS:
# change to true for enabling secure communication
enabled: false
#created certs secret name for web
secretName: ""
#Follow Advance configuration for mTLS communication establishment and place your certs in /opt/aquasec/ssl/
maintenance_db:
#Specifies the name of a maintenance database, to be used in place of the default postgres DB.
#It will define the environment variable AQUA_MAINTENANCE_DBNAME
name: ""
# extraEnvironmentVars is a list of extra environment variables to set in the tenantmanager deployments.
# https://docs.aquasec.com/docs/server-optional-variables
extraEnvironmentVars: {}
# ENV_NAME: value
#Example for mTLS env variables:
#AQUA_PUBLIC_KEY: "/opt/aquasec/ssl/<file_name>"
#AQUA_PRIVATE_KEY: "/opt/aquasec/ssl/<file_name>"
# extraSecretEnvironmentVars is a list of extra environment variables to set in the tenantmanager deployments.
# These variables take value from existing Secret objects.
extraSecretEnvironmentVars: []
# - envName: ENV_NAME
# secretName: name
# secretKey: key