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
Copy file name to clipboardExpand all lines: helm/test-values.yaml
+60-3Lines changed: 60 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -39,9 +39,11 @@ balancer:
39
39
# -- Set this to a fixed random alpa-numeric string (recommended length 24 chars). If not set this get randomly generated with every helm upgrade, each rotation invalidates all active cookies / sessions requirering users to login again.
40
40
cookieParserSecret: null
41
41
repository: jeroenwillemsen/wrongsecrets-balancer
42
-
tag: 1.6.4aws
42
+
tag: 1.6.5aws
43
43
# -- Number of replicas of the wrongsecrets-balancer deployment. Changing this in a commit? PLEASE UPDATE THE GITHUB WORKLFOWS THEN!(NUMBER OF "TRUE")
44
44
replicas: 2
45
+
# -- Port to expose on the balancer pods which the container listens on
46
+
containerPort: 3000
45
47
service:
46
48
# -- Kubernetes service type
47
49
type: ClusterIP
@@ -53,6 +55,18 @@ balancer:
53
55
loadBalancerSourceRanges: null
54
56
# -- IP address to assign to load balancer (if supported)
55
57
externalIPs: null
58
+
# -- Probes settings for the balancer pods
59
+
# -- livenessProbe: Checks if the balancer pod is still alive
60
+
livenessProbe:
61
+
httpGet:
62
+
path: /balancer/
63
+
port: http # -- Port to expose on the balancer pods which the container listens on. It is named http to be the same as the containerPort
64
+
# -- readinessProbe: Checks if the balancer pod is ready to receive traffic
65
+
readinessProbe:
66
+
httpGet:
67
+
path: /balancer/
68
+
port: http # -- Port to expose on the balancer pods which the container listens on. It is named http to be the same as the containerPort
69
+
# -- Resource limits and requests for the balancer pods
56
70
resources:
57
71
requests:
58
72
memory: 256Mi
@@ -77,6 +91,7 @@ balancer:
77
91
IRSA_ROLE: arn:aws:iam::233483431651:role/wrongsecrets-secret-manager #change this in your own AWS role!
78
92
SECRETS_MANAGER_SECRET_ID_1: "wrongsecret"#only change if you need non-default AWS SM entries
79
93
SECRETS_MANAGER_SECRET_ID_2: "wrongsecret-2"#only change if you need non-default AWS SM entries
# -- Specify a custom Wrongsecrets config.yaml. See the Wrongsecrets Docs for any needed ENVs: https://github.com/OWASP/wrongsecrets
@@ -180,7 +204,7 @@ virtualdesktop:
180
204
maxInstances: 500
181
205
# -- Juice Shop Image to use
182
206
image: jeroenwillemsen/wrongsecrets-desktop-k8s
183
-
tag: 1.6.4
207
+
tag: 1.6.5
184
208
repository: commjoenie/wrongSecrets
185
209
resources:
186
210
request:
@@ -205,6 +229,39 @@ virtualdesktop:
205
229
envFrom: []
206
230
tolerations: []
207
231
232
+
## preps for the vault container: see https://github.com/OWASP/wrongsecrets-ctf-party/issues/250
233
+
vaultContainer:
234
+
# -- Specifies how many JuiceShop instances MultiJuicer should start at max. Set to -1 to remove the max Juice Shop instance cap
235
+
maxInstances: 500
236
+
# -- Juice Shop Image to use
237
+
image: hashicorp/vault
238
+
tag: 1.15.1
239
+
repository: commjoenie/wrongSecrets
240
+
resources:
241
+
request:
242
+
memory: 128mb
243
+
cpu: 50m
244
+
limits:
245
+
memory: 256mb
246
+
cpu: 1200m
247
+
securityContext:
248
+
allowPrivilegeEscalation: false
249
+
readOnlyRootFilesystem: true
250
+
runAsNonRoot: true
251
+
capabilities:
252
+
drop:
253
+
- ALL
254
+
seccompProfile:
255
+
type: RuntimeDefault
256
+
runtimeClassName: {}
257
+
affinity: {}
258
+
# -- Optional mount environment variables from configMaps or secrets (see: https://kubernetes.io/docs/tasks/inject-data-application/distribute-credentials-secure/#configure-all-key-value-pairs-in-a-secret-as-container-environment-variables)
259
+
260
+
envFrom: []
261
+
tolerations: []
262
+
263
+
264
+
208
265
# Deletes unused Wrongsecrets namespaces after a configurable period of inactivity
0 commit comments