From 164408d4ceb3381e77ef72a57f7aa064f8c87b85 Mon Sep 17 00:00:00 2001 From: Jonathan Ervine Date: Thu, 30 Jul 2020 09:53:48 +0800 Subject: [PATCH] Fixed indenting --- radarr/Chart.yaml | 2 +- radarr/templates/statefulset.yaml | 40 +++++++++++++++---------------- 2 files changed, 21 insertions(+), 21 deletions(-) diff --git a/radarr/Chart.yaml b/radarr/Chart.yaml index 879ca60..cade4d2 100644 --- a/radarr/Chart.yaml +++ b/radarr/Chart.yaml @@ -14,7 +14,7 @@ type: application # 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. -version: 0.1.1 +version: 0.1.2 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. diff --git a/radarr/templates/statefulset.yaml b/radarr/templates/statefulset.yaml index e322a15..00a5c2e 100644 --- a/radarr/templates/statefulset.yaml +++ b/radarr/templates/statefulset.yaml @@ -23,26 +23,26 @@ spec: securityContext: {{- toYaml .Values.podSecurityContext | nindent 8 }} containers: - - name: {{ .Chart.Name }}-sidecar - image: harbor.ervine.dev/public/x86_64/alpine/sonarr-sidecar:v3.12.0 - securityContext: - privileged: true - lifecycle: - preStop: - exec: - command: - - umount - - /mnt/app-local-config - volumeMounts: - - name: radarr-config - mountPath: /app-remote-config - - name: radarr-local-config - mountPath: /mnt/app-local-config - mountPropagation: Bidirectional - resources: - requests: - cpu: 20m - memory: 32Mi + - name: {{ .Chart.Name }}-sidecar + image: harbor.ervine.dev/public/x86_64/alpine/sonarr-sidecar:v3.12.0 + securityContext: + privileged: true + lifecycle: + preStop: + exec: + command: + - umount + - /mnt/app-local-config + volumeMounts: + - name: radarr-config + mountPath: /app-remote-config + - name: radarr-local-config + mountPath: /mnt/app-local-config + mountPropagation: Bidirectional + resources: + requests: + cpu: 20m + memory: 32Mi - name: {{ .Chart.Name }} securityContext: {{- toYaml .Values.securityContext | nindent 12 }}