apiVersion: apps/v1 kind: Deployment metadata: name: {{ include "local-path-provisioner.fullname" . }} labels: {{- include "local-path-provisioner.labels" . | nindent 4 }} spec: replicas: {{ .Values.replicaCount }} selector: matchLabels: {{- include "local-path-provisioner.selectorLabels" . | nindent 6 }} template: metadata: {{- with .Values.podAnnotations }} annotations: {{- toYaml . | nindent 8 }} {{- end }} labels: {{- include "local-path-provisioner.selectorLabels" . | nindent 8 }} spec: {{- with .Values.imagePullSecrets }} imagePullSecrets: {{- toYaml . | nindent 8 }} {{- end }} serviceAccountName: {{ include "local-path-provisioner.serviceAccountName" . }} securityContext: {{- toYaml .Values.podSecurityContext | nindent 8 }} containers: - name: {{ .Chart.Name }} securityContext: {{- toYaml .Values.securityContext | nindent 12 }} {{- if .Values.privateRegistry.registryUrl }} image: "{{ .Values.privateRegistry.registryUrl }}/{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}" {{- else }} image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}" {{- end }} imagePullPolicy: {{ .Values.image.pullPolicy }} command: - local-path-provisioner - --debug - start - --config - /etc/config/config.json - --service-account-name - {{ template "local-path-provisioner.serviceAccountName" . }} - --provisioner-name - {{ template "local-path-provisioner.provisionerName" . }} - --helper-image {{- if .Values.privateRegistry.registryUrl }} - "{{ .Values.privateRegistry.registryUrl }}/{{ .Values.helperImage.repository }}:{{ .Values.helperImage.tag }}" {{- else }} - "{{ .Values.helperImage.repository }}:{{ .Values.helperImage.tag }}" {{- end }} - --configmap-name - {{ .Values.configmap.name }} volumeMounts: - name: config-volume mountPath: /etc/config/ env: - name: POD_NAMESPACE value: {{ .Release.Namespace }} resources: {{- toYaml .Values.resources | nindent 12 }} volumes: - name: config-volume configMap: name: {{ .Values.configmap.name }} {{- with .Values.nodeSelector }} nodeSelector: {{- toYaml . | nindent 8 }} {{- end }} {{- with .Values.affinity }} affinity: {{- toYaml . | nindent 8 }} {{- end }} {{- with .Values.tolerations }} tolerations: {{- toYaml . | nindent 8 }} {{- end }}