Fixed indenting

This commit is contained in:
Jonny Ervine 2021-10-12 21:42:17 +08:00
parent 84d6d19c6d
commit 37e0c9672f

View File

@ -39,29 +39,29 @@ spec:
- name: URL - name: URL
value: "http://127.0.0.1:7878" value: "http://127.0.0.1:7878"
- name: {{ .Chart.Name }} - name: {{ .Chart.Name }}
securityContext: securityContext:
{{- toYaml .Values.securityContext | nindent 12 }} {{- toYaml .Values.securityContext | nindent 12 }}
image: "{{ .Values.image.repository }}:{{ .Chart.AppVersion }}" image: "{{ .Values.image.repository }}:{{ .Chart.AppVersion }}"
imagePullPolicy: {{ .Values.image.pullPolicy }} imagePullPolicy: {{ .Values.image.pullPolicy }}
command: command:
ports: ports:
- name: radarr - name: radarr
containerPort: 7878 containerPort: 7878
protocol: TCP protocol: TCP
livenessProbe: livenessProbe:
tcpSocket: tcpSocket:
port: 7878 port: 7878
readinessProbe: readinessProbe:
tcpSocket: tcpSocket:
port: 7878 port: 7878
resources: resources:
{{- toYaml .Values.resources | nindent 12 }} {{- toYaml .Values.resources | nindent 12 }}
volumeMounts: volumeMounts:
- name: radarr-config - name: radarr-config
mountPath: /config mountPath: /config
- name: radarr-media - name: radarr-media
mountPath: /movies mountPath: /movies
subPath: movies subPath: movies
volumes: volumes:
{{- if and .Values.config.persistence.enabled .Values.config.persistence.existingClaim }} {{- if and .Values.config.persistence.enabled .Values.config.persistence.existingClaim }}
- name: radarr-config - name: radarr-config