mirror of
https://github.com/TeamPiped/Piped-Kubernetes.git
synced 2024-08-14 23:57:15 +00:00
42e5d8f110
It shouldn't require dialect and driver_class and instead default to using them but allow customization.
48 lines
No EOL
1.7 KiB
YAML
48 lines
No EOL
1.7 KiB
YAML
{{- if .Values.frontend.enabled -}}
|
|
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: {{ include "frontend.names.fullname" . }}
|
|
{{- with (merge (.Values.frontend.labels | default dict) (include "bjw-s.common.lib.metadata.allLabels" $ | fromYaml)) }}
|
|
labels: {{- toYaml . | nindent 4 }}
|
|
{{- end }}
|
|
{{- with (merge (.Values.frontend.annotations | default dict) (include "bjw-s.common.lib.metadata.globalAnnotations" $ | fromYaml)) }}
|
|
annotations: {{- toYaml . | nindent 4 }}
|
|
{{- end }}
|
|
spec:
|
|
revisionHistoryLimit: {{ .Values.frontend.revisionHistoryLimit }}
|
|
replicas: {{ .Values.frontend.replicas }}
|
|
{{- $strategy := default "Recreate" .Values.frontend.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.frontend.rollingUpdate }}
|
|
{{- if and (eq $strategy "RollingUpdate") (or .surge .unavailable) }}
|
|
rollingUpdate:
|
|
{{- with .unavailable }}
|
|
maxUnavailable: {{ . }}
|
|
{{- end }}
|
|
{{- with .surge }}
|
|
maxSurge: {{ . }}
|
|
{{- end }}
|
|
{{- end }}
|
|
{{- end }}
|
|
selector:
|
|
matchLabels:
|
|
{{- include "frontend.labels.selectorLabels" . | nindent 6 }}
|
|
template:
|
|
metadata:
|
|
{{- with include ("frontend.podAnnotations") . }}
|
|
annotations:
|
|
{{- . | nindent 8 }}
|
|
{{- end }}
|
|
labels:
|
|
{{- include "frontend.labels.selectorLabels" . | nindent 8 }}
|
|
{{- with .Values.podLabels }}
|
|
{{- toYaml . | nindent 8 }}
|
|
{{- end }}
|
|
spec:
|
|
{{- include "frontend.controller.pod" . | nindent 6 }}
|
|
{{- end }} |