61 lines
2.3 KiB
YAML
61 lines
2.3 KiB
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: minio-operator
|
|
namespace: {{ .Release.Namespace }}
|
|
labels: {{- include "minio-operator.labels" . | nindent 4 }}
|
|
spec:
|
|
replicas: {{ .Values.operator.replicaCount }}
|
|
selector:
|
|
matchLabels: {{- include "minio-operator.selectorLabels" . | nindent 6 }}
|
|
template:
|
|
metadata:
|
|
labels: {{- include "minio-operator.selectorLabels" . | nindent 8 }}
|
|
spec:
|
|
{{- with .Values.operator.imagePullSecrets }}
|
|
imagePullSecrets: {{- toYaml . | nindent 8 }}
|
|
{{- end }}
|
|
{{- with .Values.operator.runtimeClassName }}
|
|
runtimeClassName: {{ . }}
|
|
{{- end }}
|
|
serviceAccountName: minio-operator
|
|
{{- with .Values.operator.securityContext }}
|
|
securityContext: {{- toYaml . | nindent 8 }}
|
|
{{- end }}
|
|
{{- with .Values.operator.nodeSelector }}
|
|
nodeSelector: {{- toYaml . | nindent 8 }}
|
|
{{- end }}
|
|
{{- with .Values.operator.affinity }}
|
|
affinity: {{- toYaml . | nindent 8 }}
|
|
{{- end }}
|
|
{{- with .Values.operator.tolerations }}
|
|
tolerations: {{- toYaml . | nindent 8 }}
|
|
{{- end }}
|
|
{{- with .Values.operator.topologySpreadConstraints }}
|
|
topologySpreadConstraints: {{- toYaml . | nindent 8 }}
|
|
{{- end }}
|
|
{{- with .Values.operator.priorityClassName }}
|
|
priorityClassName: {{ . }}
|
|
{{- end }}
|
|
{{- with .Values.operator.initContainers }}
|
|
initContainers: {{- toYaml . | nindent 8 }}
|
|
{{- end }}
|
|
containers:
|
|
- name: {{ .Chart.Name }}
|
|
image: "{{ .Values.operator.image.repository }}:{{ .Values.operator.image.digest | default .Values.operator.image.tag }}"
|
|
imagePullPolicy: {{ .Values.operator.image.pullPolicy }}
|
|
args:
|
|
- controller
|
|
{{- with .Values.operator.env }}
|
|
env: {{- toYaml . | nindent 12 }}
|
|
{{- end }}
|
|
resources: {{- toYaml .Values.operator.resources | nindent 12 }}
|
|
{{- with .Values.operator.containerSecurityContext }}
|
|
securityContext: {{- toYaml . | nindent 12 }}
|
|
{{- end }}
|
|
{{- with .Values.operator.volumeMounts }}
|
|
volumeMounts: {{- toYaml . | nindent 12 }}
|
|
{{- end }}
|
|
{{- with .Values.operator.volumes }}
|
|
volumes: {{- toYaml . | nindent 8 }}
|
|
{{- end }} |