Fixed indenting

This commit is contained in:
Jonathan Ervine 2020-07-30 09:53:48 +08:00
parent 457dee6ab2
commit 164408d4ce
2 changed files with 21 additions and 21 deletions

View File

@ -14,7 +14,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes # This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version. # to the chart and its templates, including the app version.
version: 0.1.1 version: 0.1.2
# This is the version number of the application being deployed. This version number should be # This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. # incremented each time you make changes to the application.

View File

@ -23,26 +23,26 @@ spec:
securityContext: securityContext:
{{- toYaml .Values.podSecurityContext | nindent 8 }} {{- toYaml .Values.podSecurityContext | nindent 8 }}
containers: containers:
- name: {{ .Chart.Name }}-sidecar - name: {{ .Chart.Name }}-sidecar
image: harbor.ervine.dev/public/x86_64/alpine/sonarr-sidecar:v3.12.0 image: harbor.ervine.dev/public/x86_64/alpine/sonarr-sidecar:v3.12.0
securityContext: securityContext:
privileged: true privileged: true
lifecycle: lifecycle:
preStop: preStop:
exec: exec:
command: command:
- umount - umount
- /mnt/app-local-config - /mnt/app-local-config
volumeMounts: volumeMounts:
- name: radarr-config - name: radarr-config
mountPath: /app-remote-config mountPath: /app-remote-config
- name: radarr-local-config - name: radarr-local-config
mountPath: /mnt/app-local-config mountPath: /mnt/app-local-config
mountPropagation: Bidirectional mountPropagation: Bidirectional
resources: resources:
requests: requests:
cpu: 20m cpu: 20m
memory: 32Mi memory: 32Mi
- name: {{ .Chart.Name }} - name: {{ .Chart.Name }}
securityContext: securityContext:
{{- toYaml .Values.securityContext | nindent 12 }} {{- toYaml .Values.securityContext | nindent 12 }}