mirror of
https://github.com/bjw-s-labs/helm-charts.git
synced 2025-07-04 17:07:04 +02:00
* feat(common): omit replicas field in Deployment if null is given (#134) * feat(common): Add cron job backoff limit (#137) * feat(common): add hostPID and hostIPC (#140) Signed-off-by: Maurits <75321636+maurits-funda@users.noreply.github.com> Signed-off-by: Gabe Cook <gabe565@gmail.com> Signed-off-by: Angel Nunez Mencias <git@angelnu.com> Co-authored-by: Maurits <75321636+maurits-funda@users.noreply.github.com> Co-authored-by: Gabe Cook <gabe565@gmail.com> Co-authored-by: Angel Nunez Mencias <git@angelnu.com>
55 lines
1.8 KiB
Smarty
55 lines
1.8 KiB
Smarty
{{/*
|
|
This template serves as a blueprint for Deployment objects that are created
|
|
using the common library.
|
|
*/}}
|
|
{{- define "bjw-s.common.class.deployment" -}}
|
|
{{- $strategy := default "Recreate" .Values.controller.strategy -}}
|
|
{{- if and (ne $strategy "Recreate") (ne $strategy "RollingUpdate") -}}
|
|
{{- fail (printf "Not a valid strategy type for Deployment (%s)" $strategy) -}}
|
|
{{- end -}}
|
|
---
|
|
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: {{ include "bjw-s.common.lib.chart.names.fullname" . }}
|
|
{{- with include "bjw-s.common.lib.controller.metadata.labels" . }}
|
|
labels: {{- . | nindent 4 }}
|
|
{{- end }}
|
|
{{- with include "bjw-s.common.lib.controller.metadata.annotations" . }}
|
|
annotations: {{- . | nindent 4 }}
|
|
{{- end }}
|
|
spec:
|
|
revisionHistoryLimit: {{ .Values.controller.revisionHistoryLimit }}
|
|
{{- if not (eq .Values.controller.replicas nil) }}
|
|
replicas: {{ .Values.controller.replicas }}
|
|
{{- end }}
|
|
strategy:
|
|
type: {{ $strategy }}
|
|
{{- with .Values.controller.rollingUpdate }}
|
|
{{- if and (eq $strategy "RollingUpdate") (or .surge .unavailable) }}
|
|
rollingUpdate:
|
|
{{- with .unavailable }}
|
|
maxUnavailable: {{ . }}
|
|
{{- end }}
|
|
{{- with .surge }}
|
|
maxSurge: {{ . }}
|
|
{{- end }}
|
|
{{- end }}
|
|
{{- end }}
|
|
selector:
|
|
matchLabels:
|
|
{{- include "bjw-s.common.lib.metadata.selectorLabels" . | nindent 6 }}
|
|
template:
|
|
metadata:
|
|
{{- with include ("bjw-s.common.lib.metadata.podAnnotations") . }}
|
|
annotations:
|
|
{{- . | nindent 8 }}
|
|
{{- end }}
|
|
labels:
|
|
{{- include "bjw-s.common.lib.metadata.selectorLabels" . | nindent 8 }}
|
|
{{- with .Values.podLabels }}
|
|
{{- toYaml . | nindent 8 }}
|
|
{{- end }}
|
|
spec:
|
|
{{- include "bjw-s.common.lib.controller.pod" . | nindent 6 }}
|
|
{{- end -}}
|