cvat/helm-chart/templates/cvat_frontend/deployment.yml

81 lines
2.5 KiB
YAML
Raw Permalink Normal View History

2025-09-16 01:19:40 +00:00
apiVersion: apps/v1
kind: Deployment
metadata:
name: {{ .Release.Name }}-frontend
namespace: {{ .Release.Namespace }}
labels:
{{- include "cvat.labels" . | nindent 4 }}
app: cvat-app
tier: frontend
spec:
replicas: {{ .Values.cvat.frontend.replicas }}
strategy:
type: Recreate
selector:
matchLabels:
{{- include "cvat.selectorLabels" . | nindent 6 }}
app: cvat-app
tier: frontend
template:
metadata:
labels:
{{- include "cvat.labels" . | nindent 8 }}
app: cvat-app
tier: frontend
{{- with .Values.cvat.frontend.labels }}
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.cvat.frontend.annotations }}
annotations:
{{- toYaml . | nindent 8 }}
{{- end }}
spec:
containers:
- name: cvat-frontend-app-container
image: {{ .Values.cvat.frontend.image }}:{{ .Values.cvat.frontend.tag }}
imagePullPolicy: {{ .Values.cvat.frontend.imagePullPolicy }}
{{- with .Values.cvat.frontend.resources }}
resources:
{{- toYaml . | nindent 12 }}
{{- end }}
ports:
- containerPort: 8000
{{- with .Values.cvat.frontend.additionalEnv }}
env:
{{- toYaml . | nindent 10 }}
{{- end }}
{{- if .Values.cvat.frontend.readinessProbe.enabled }}
readinessProbe:
tcpSocket:
port: 8000
{{- toYaml (omit .Values.cvat.frontend.readinessProbe "enabled") | nindent 12 }}
{{- end }}
{{- if .Values.cvat.frontend.livenessProbe.enabled }}
livenessProbe:
tcpSocket:
port: 8000
{{- toYaml (omit .Values.cvat.frontend.livenessProbe "enabled") | nindent 12 }}
{{- end }}
{{- with .Values.cvat.frontend.additionalVolumeMounts }}
volumeMounts:
{{- toYaml . | nindent 10 }}
{{- end }}
securityContext:
runAsNonRoot: true
{{- with .Values.cvat.frontend.additionalVolumes }}
volumes:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.cvat.frontend.affinity }}
affinity:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.cvat.frontend.tolerations }}
tolerations:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.imagePullSecrets }}
imagePullSecrets:
{{- toYaml . | nindent 8 }}
{{- end }}