Skip to content
This repository has been archived by the owner on Feb 22, 2022. It is now read-only.

[stable/buildkite] Fix newline issue when using extraEnv #4403

Merged
merged 1 commit into from
Mar 27, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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