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
securityContext: {{ include "lightrun-keycloak.containerSecurityContext" . | indent 10 }}
307
+
command:
308
+
- sh
309
+
- /scripts/wait-for-200.sh
310
+
resources:
311
+
limits:
312
+
memory: "100Mi"
313
+
cpu: "100m"
314
+
requests:
315
+
memory: "100Mi"
316
+
cpu: "100m"
317
+
env:
318
+
- name: MY_POD_NAMESPACE
319
+
valueFrom:
320
+
fieldRef:
321
+
fieldPath: metadata.namespace
322
+
- name: AUTH_USER
323
+
valueFrom:
324
+
secretKeyRef:
325
+
name: {{ include "secrets.backend.name" . }}
326
+
key: SPRING_RABBITMQ_USERNAME
327
+
- name: AUTH_PASSWORD
328
+
valueFrom:
329
+
secretKeyRef:
330
+
name: {{ include "secrets.backend.name" . }}
331
+
key: SPRING_RABBITMQ_PASSWORD
332
+
- name: RABBITMQ_TCP_PORT
333
+
value: "15672"
334
+
- name: URL
335
+
value: {{ include "http.scheme" . }}://{{ include "lightrun-mq.endpoint" . }}:$(RABBITMQ_TCP_PORT)/api/overview {{ if .Values.general.internal_tls.enabled }}--no-check-certificate{{ end }}
336
+
{{- end }}
296
337
{{- end -}}
297
338
{{- if .Values.general.readOnlyRootFilesystem }}
298
339
{{- include "lightrun-keycloak.initContainer.read-only-rootfs" . }}
0 commit comments