55 lines
1.8 KiB
Smarty
55 lines
1.8 KiB
Smarty
|
{{/* Define the nginx container */}}
|
||
|
{{- define "nextcloud.nginx" -}}
|
||
|
image: tccr.io/truecharts/nginx-unprivileged:v1.23.0@sha256:e0e989581b7935192d6023ac4a2c19045df39b69b43b894fedbd09726b34c133
|
||
|
imagePullPolicy: '{{ .Values.image.pullPolicy }}'
|
||
|
securityContext:
|
||
|
runAsUser: 33
|
||
|
runAsGroup: 33
|
||
|
readOnlyRootFilesystem: true
|
||
|
runAsNonRoot: true
|
||
|
{{- with (include "tc.common.controller.volumeMounts" . | trim) }}
|
||
|
volumeMounts:
|
||
|
{{ nindent 2 . }}
|
||
|
{{- end }}
|
||
|
- mountPath: /etc/nginx/nginx.conf
|
||
|
name: nginx
|
||
|
readOnly: true
|
||
|
subPath: nginx.conf
|
||
|
ports:
|
||
|
- containerPort: 8080
|
||
|
|
||
|
readinessProbe:
|
||
|
httpGet:
|
||
|
path: /robots.txt
|
||
|
port: 8080
|
||
|
httpHeaders:
|
||
|
- name: Host
|
||
|
value: "test.fakedomain.dns"
|
||
|
initialDelaySeconds: {{ .Values.probes.readiness.spec.initialDelaySeconds }}
|
||
|
periodSeconds: {{ .Values.probes.readiness.spec.periodSeconds }}
|
||
|
timeoutSeconds: {{ .Values.probes.readiness.spec.timeoutSeconds }}
|
||
|
failureThreshold: {{ .Values.probes.readiness.spec.failureThreshold }}
|
||
|
livenessProbe:
|
||
|
httpGet:
|
||
|
path: /robots.txt
|
||
|
port: 8080
|
||
|
httpHeaders:
|
||
|
- name: Host
|
||
|
value: "test.fakedomain.dns"
|
||
|
initialDelaySeconds: {{ .Values.probes.liveness.spec.initialDelaySeconds }}
|
||
|
periodSeconds: {{ .Values.probes.liveness.spec.periodSeconds }}
|
||
|
timeoutSeconds: {{ .Values.probes.liveness.spec.timeoutSeconds }}
|
||
|
failureThreshold: {{ .Values.probes.liveness.spec.failureThreshold }}
|
||
|
startupProbe:
|
||
|
httpGet:
|
||
|
path: /robots.txt
|
||
|
port: 8080
|
||
|
httpHeaders:
|
||
|
- name: Host
|
||
|
value: "test.fakedomain.dns"
|
||
|
initialDelaySeconds: {{ .Values.probes.startup.spec.initialDelaySeconds }}
|
||
|
periodSeconds: {{ .Values.probes.startup.spec.periodSeconds }}
|
||
|
timeoutSeconds: {{ .Values.probes.startup.spec.timeoutSeconds }}
|
||
|
failureThreshold: {{ .Values.probes.startup.spec.failureThreshold }}
|
||
|
{{- end -}}
|