From 95d5510caccba48edd4886f2a248929a73601b47 Mon Sep 17 00:00:00 2001 From: Jonas Arneberg Date: Thu, 20 Jun 2019 14:48:49 +0200 Subject: [PATCH] Fix extraContainers indentation (#14899) Reverts indentation change from https://github.com/helm/charts/pull/14306 so that `extraContainers` can be overridden like this ``` server: extraContainers: | - name: extra-container image: "docker.io/some/image:1.0" pullPolicy: IfNotPresent ``` Signed-off-by: Jonas Arneberg --- stable/drone/Chart.yaml | 2 +- stable/drone/templates/deployment-server.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/stable/drone/Chart.yaml b/stable/drone/Chart.yaml index 6490d304b2..e570612f1f 100644 --- a/stable/drone/Chart.yaml +++ b/stable/drone/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v1 name: drone home: https://drone.io/ icon: https://drone.io/apple-touch-icon.png -version: 2.0.2 +version: 2.0.3 appVersion: 1.1.0 description: Drone is a Continuous Delivery system built on container technology keywords: diff --git a/stable/drone/templates/deployment-server.yaml b/stable/drone/templates/deployment-server.yaml index d53fdc20e9..654283a5cb 100644 --- a/stable/drone/templates/deployment-server.yaml +++ b/stable/drone/templates/deployment-server.yaml @@ -117,7 +117,7 @@ spec: - name: data mountPath: /var/lib/drone {{- with .Values.server.extraContainers }} -{{ tpl . $ | indent 10 }} +{{ tpl . $ | indent 6 }} {{- end }} volumes: {{ if eq .Values.sourceControl.provider "bitbucketServer" -}}