deployment #3
@ -14,9 +14,9 @@ Main entrypoint for the common library chart. It will render all underlying temp
|
|||||||
{{ include "lib.configs" . | nindent 0 }}
|
{{ include "lib.configs" . | nindent 0 }}
|
||||||
{{ if .Values.controller.enabled }}
|
{{ if .Values.controller.enabled }}
|
||||||
{{ if eq .Values.controller.type "statefulset" }}
|
{{ if eq .Values.controller.type "statefulset" }}
|
||||||
{{- include "lib.statefulset" . | nindent 0}}
|
{{- include "lib.statefulset" . | nindent 0 }}
|
||||||
|
{{ else if eq .Values.controller.type "deployment" }}
|
||||||
|
{{- include "lib.deployment" . | nindent 0 }}
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
|
|
||||||
|
|
||||||
|
79
templates/_deployment.tpl
Normal file
79
templates/_deployment.tpl
Normal file
@ -0,0 +1,79 @@
|
|||||||
|
{{- define "lib.deployment" -}}
|
||||||
|
---
|
||||||
|
apiVersion: apps/v1
|
||||||
|
kind: Deployment
|
||||||
|
metadata:
|
||||||
|
name: {{ include "lib.fullname" . }}
|
||||||
|
labels:
|
||||||
|
{{- include "lib.labels" . | nindent 4 }}
|
||||||
|
spec:
|
||||||
|
{{- if not .Values.autoscaling.enabled }}
|
||||||
|
replicas: {{ .Values.replicaCount }}
|
||||||
|
{{- end }}
|
||||||
|
selector:
|
||||||
|
matchLabels:
|
||||||
|
{{- include "lib.selectorLabels" . | nindent 6 }}
|
||||||
|
template:
|
||||||
|
metadata:
|
||||||
|
{{- with .Values.podAnnotations }}
|
||||||
|
annotations:
|
||||||
|
{{- toYaml . | nindent 8 }}
|
||||||
|
{{- end }}
|
||||||
|
labels:
|
||||||
|
{{- include "lib.labels" . | nindent 8 }}
|
||||||
|
{{- with .Values.podLabels }}
|
||||||
|
{{- toYaml . | nindent 8 }}
|
||||||
|
{{- end }}
|
||||||
|
spec:
|
||||||
|
{{- with .Values.imagePullSecrets }}
|
||||||
|
imagePullSecrets:
|
||||||
|
{{- toYaml . | nindent 8 }}
|
||||||
|
{{- end }}
|
||||||
|
serviceAccountName: {{ include "lib.serviceAccountName" . }}
|
||||||
|
securityContext:
|
||||||
|
{{- toYaml .Values.podSecurityContext | nindent 8 }}
|
||||||
|
containers:
|
||||||
|
- name: {{ .Chart.Name }}
|
||||||
|
securityContext:
|
||||||
|
{{- toYaml .Values.securityContext | nindent 12 }}
|
||||||
|
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
|
||||||
|
imagePullPolicy: {{ .Values.image.pullPolicy }}
|
||||||
|
ports:
|
||||||
|
{{- range $name, $values := .Values.service -}}
|
||||||
|
{{- if $values.enabled -}}
|
||||||
|
{{- range $k, $v := $values.ports }}
|
||||||
|
- name: {{ $k }}
|
||||||
|
containerPort: {{ default $v.port $v.targetPort }}
|
||||||
|
protocol: {{ default "HTTP" $v.protocol }}
|
||||||
|
{{- end -}}
|
||||||
|
{{- end -}}
|
||||||
|
{{- end }}
|
||||||
|
env:
|
||||||
|
{{- include "lib.environmentVariables" . | default "[]" | nindent 12 }}
|
||||||
|
livenessProbe:
|
||||||
|
{{- toYaml .Values.livenessProbe | nindent 12 }}
|
||||||
|
readinessProbe:
|
||||||
|
{{- toYaml .Values.readinessProbe | nindent 12 }}
|
||||||
|
resources:
|
||||||
|
{{- toYaml .Values.resources | nindent 12 }}
|
||||||
|
{{- with .Values.volumeMounts }}
|
||||||
|
volumeMounts:
|
||||||
|
{{- toYaml . | nindent 12 }}
|
||||||
|
{{- end }}
|
||||||
|
{{- with .Values.volumes }}
|
||||||
|
volumes:
|
||||||
|
{{- toYaml . | nindent 8 }}
|
||||||
|
{{- end }}
|
||||||
|
{{- with .Values.nodeSelector }}
|
||||||
|
nodeSelector:
|
||||||
|
{{- toYaml . | nindent 8 }}
|
||||||
|
{{- end }}
|
||||||
|
{{- with .Values.affinity }}
|
||||||
|
affinity:
|
||||||
|
{{- toYaml . | nindent 8 }}
|
||||||
|
{{- end }}
|
||||||
|
{{- with .Values.tolerations }}
|
||||||
|
tolerations:
|
||||||
|
{{- toYaml . | nindent 8 }}
|
||||||
|
{{- end }}
|
||||||
|
{{- end }}
|
@ -14,12 +14,12 @@ metadata:
|
|||||||
labels:
|
labels:
|
||||||
{{- $labels | nindent 4 }}
|
{{- $labels | nindent 4 }}
|
||||||
spec:
|
spec:
|
||||||
type: {{ $values.type }}
|
type: {{ default "ClusterIP" $values.type }}
|
||||||
ports:
|
ports:
|
||||||
{{- range $k, $v := $values.ports }}
|
{{- range $k, $v := $values.ports }}
|
||||||
- port: {{ $v.port }}
|
- port: {{ $v.port }}
|
||||||
targetPort: {{ default $v.targetPort $v.port }}
|
targetPort: {{ default $v.port $v.targetPort }}
|
||||||
protocol: {{ $v.protocol }}
|
protocol: {{ default "HTTP" $v.protocol }}
|
||||||
name: {{ $k }}
|
name: {{ $k }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
selector:
|
selector:
|
||||||
|
Loading…
Reference in New Issue
Block a user