30 lines
1.4 KiB
YAML
30 lines
1.4 KiB
YAML
|
{{ if (or (not .Values.persistence.enabled) (eq .Values.deployment.type "deployment")) }}
|
||
|
apiVersion: {{ include "common.capabilities.deployment.apiVersion" . }}
|
||
|
kind: Deployment
|
||
|
metadata:
|
||
|
name: {{ template "common.names.fullname" . }}
|
||
|
namespace: {{ .Release.Namespace }}
|
||
|
labels: {{- include "common.labels.standard" . | nindent 4 }}
|
||
|
{{- if .Values.commonLabels }}
|
||
|
{{- include "common.tplvalues.render" ( dict "value" .Values.commonLabels "context" $ ) | nindent 4 }}
|
||
|
{{- end }}
|
||
|
{{- if .Values.commonAnnotations }}
|
||
|
annotations: {{- include "common.tplvalues.render" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }}
|
||
|
{{- end }}
|
||
|
spec:
|
||
|
replicas: {{ .Values.replicaCount }}
|
||
|
selector:
|
||
|
matchLabels: {{- include "common.labels.matchLabels" . | nindent 6 }}
|
||
|
strategy: {{- include "common.tplvalues.render" (dict "value" .Values.updateStrategy "context" $ ) | nindent 4 }}
|
||
|
template:
|
||
|
metadata:
|
||
|
labels: {{- include "common.labels.standard" . | nindent 8 }}
|
||
|
{{- if .Values.podLabels }}
|
||
|
{{- include "common.tplvalues.render" (dict "value" .Values.podLabels "context" $) | nindent 8 }}
|
||
|
{{- end }}
|
||
|
{{- if .Values.podAnnotations }}
|
||
|
annotations: {{- include "common.tplvalues.render" (dict "value" .Values.podAnnotations "context" $) | nindent 8 }}
|
||
|
{{- end }}
|
||
|
spec: {{- include "tomcat.pod" . | nindent 6 }}
|
||
|
{{- end }}
|