mirror of
https://github.com/TeamPiped/Piped-Kubernetes.git
synced 2024-08-14 23:57:15 +00:00
49 lines
1.6 KiB
YAML
49 lines
1.6 KiB
YAML
|
---
|
||
|
{{- if .Values.backend.enabled -}}
|
||
|
apiVersion: apps/v1
|
||
|
kind: Deployment
|
||
|
metadata:
|
||
|
name: {{ include "backend.names.fullname" . }}
|
||
|
{{- with (merge (.Values.backend.labels | default dict) (include "common.labels" $ | fromYaml)) }}
|
||
|
labels: {{- toYaml . | nindent 4 }}
|
||
|
{{- end }}
|
||
|
{{- with (merge (.Values.backend.annotations | default dict) (include "common.annotations" $ | fromYaml)) }}
|
||
|
annotations: {{- toYaml . | nindent 4 }}
|
||
|
{{- end }}
|
||
|
spec:
|
||
|
revisionHistoryLimit: {{ .Values.backend.revisionHistoryLimit }}
|
||
|
replicas: {{ .Values.backend.replicas }}
|
||
|
{{- $strategy := default "Recreate" .Values.backend.strategy }}
|
||
|
{{- if and (ne $strategy "Recreate") (ne $strategy "RollingUpdate") }}
|
||
|
{{- fail (printf "Not a valid strategy type for Deployment (%s)" $strategy) }}
|
||
|
{{- end }}
|
||
|
strategy:
|
||
|
type: {{ $strategy }}
|
||
|
{{- with .Values.backend.rollingUpdate }}
|
||
|
{{- if and (eq $strategy "RollingUpdate") (or .surge .unavailable) }}
|
||
|
rollingUpdate:
|
||
|
{{- with .unavailable }}
|
||
|
maxUnavailable: {{ . }}
|
||
|
{{- end }}
|
||
|
{{- with .surge }}
|
||
|
maxSurge: {{ . }}
|
||
|
{{- end }}
|
||
|
{{- end }}
|
||
|
{{- end }}
|
||
|
selector:
|
||
|
matchLabels:
|
||
|
{{- include "backend.labels.selectorLabels" . | nindent 6 }}
|
||
|
template:
|
||
|
metadata:
|
||
|
{{- with include ("backend.podAnnotations") . }}
|
||
|
annotations:
|
||
|
{{- . | nindent 8 }}
|
||
|
{{- end }}
|
||
|
labels:
|
||
|
{{- include "backend.labels.selectorLabels" . | nindent 8 }}
|
||
|
{{- with .Values.podLabels }}
|
||
|
{{- toYaml . | nindent 8 }}
|
||
|
{{- end }}
|
||
|
spec:
|
||
|
{{- include "backend.controller.pod" . | nindent 6 }}
|
||
|
{{- end }}
|