apiVersion: apps/v1 kind: Deployment metadata: name: taiga-front namespace: {{ .namespace }} spec: replicas: 1 selector: matchLabels: component: front template: metadata: labels: component: front spec: securityContext: runAsNonRoot: false runAsUser: 0 runAsGroup: 0 seccompProfile: type: RuntimeDefault containers: - name: taiga-front image: taigaio/taiga-front:6.10.3 ports: - name: http containerPort: 80 protocol: TCP env: - name: TAIGA_URL value: https://{{ .domain }} - name: TAIGA_WEBSOCKETS_URL value: wss://{{ .domain }} - name: TAIGA_SUBPATH value: "" resources: limits: cpu: 250m memory: 256Mi requests: cpu: 50m memory: 64Mi livenessProbe: httpGet: path: / port: 80 initialDelaySeconds: 15 periodSeconds: 30 timeoutSeconds: 5 failureThreshold: 3 readinessProbe: httpGet: path: / port: 80 initialDelaySeconds: 10 periodSeconds: 10 timeoutSeconds: 3 failureThreshold: 3 securityContext: readOnlyRootFilesystem: false restartPolicy: Always