Adds taiga app.

This commit is contained in:
2026-06-19 21:33:26 +00:00
parent 1d57e26dae
commit a2852dab0a
22 changed files with 1015 additions and 0 deletions

View File

@@ -0,0 +1,61 @@
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