Skip to content

Commit

Permalink
[stable/buildkite] Fix newline issue when using extraEnv (helm#4403)
Browse files Browse the repository at this point in the history
  • Loading branch information
bshelton229 authored and rolanddb committed Apr 9, 2018
1 parent 1ed8c74 commit 19a19f5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion stable/buildkite/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v1
description: Agent for Buildkite
name: buildkite
version: 0.2.1
version: 0.2.2
appVersion: 3.0
icon: https://github.com/buildkite/media/blob/master/marks/Buildkite%20-%20Mark%20-%20colour.png
keywords:
Expand Down
4 changes: 3 additions & 1 deletion stable/buildkite/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,9 @@ spec:
key: agent-ssh
{{- end }}
# EXTRA BUILDKITE AGENT ENV VARS
{{- if .Values.extraEnv }}{{ toYaml .Values.extraEnv | indent 12 }}{{- end }}
{{- if .Values.extraEnv }}
{{ toYaml .Values.extraEnv | indent 12 }}
{{- end }}
resources:
{{ toYaml .Values.resources | indent 12 }}
volumeMounts:
Expand Down

0 comments on commit 19a19f5

Please sign in to comment.