From ef4d89e9b9b5d4917bbf1cd3ea0d118c467df239 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johnny=20Bergstr=C3=B6m?= Date: Wed, 17 Oct 2018 18:39:32 +0200 Subject: [PATCH] gocd: wrong agent resource value ref (#8496) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gocd: wrong agent resource value ref .Values.agent.resources exist but is not used Signed-off-by: Johnny Bergström * gocd: Update changelog Signed-off-by: Johnny Bergström --- stable/gocd/CHANGELOG.md | 3 +++ stable/gocd/Chart.yaml | 2 +- stable/gocd/templates/gocd-agent-deployment.yaml | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/stable/gocd/CHANGELOG.md b/stable/gocd/CHANGELOG.md index c68e92d5b8..384f411334 100644 --- a/stable/gocd/CHANGELOG.md +++ b/stable/gocd/CHANGELOG.md @@ -1,3 +1,6 @@ +### 1.5.2 +* [17fa5c8e](https://github.com/kubernetes/charts/commit/17fa5c8e): Fix agent kube resources typo. + ### 1.5.1 * [b22b9d6](https://github.com/kubernetes/charts/commit/b22b9d6): diff --git a/stable/gocd/Chart.yaml b/stable/gocd/Chart.yaml index df22ff3f6d..6e863d3dde 100644 --- a/stable/gocd/Chart.yaml +++ b/stable/gocd/Chart.yaml @@ -1,6 +1,6 @@ name: gocd home: https://www.gocd.org/ -version: 1.5.1 +version: 1.5.2 appVersion: 18.10.0 description: GoCD is an open-source continuous delivery server to model and visualize complex workflows with ease. icon: https://gocd.github.io/assets/images/go-icon-black-192x192.png diff --git a/stable/gocd/templates/gocd-agent-deployment.yaml b/stable/gocd/templates/gocd-agent-deployment.yaml index a3dffda3d1..263b9cb275 100644 --- a/stable/gocd/templates/gocd-agent-deployment.yaml +++ b/stable/gocd/templates/gocd-agent-deployment.yaml @@ -47,7 +47,7 @@ spec: {{- end }} imagePullPolicy: {{ .Values.agent.image.pullPolicy }} resources: -{{ toYaml .Values.server.resources | indent 12 }} +{{ toYaml .Values.agent.resources | indent 12 }} env: - name: GO_SERVER_URL {{- if .Values.agent.env.goServerUrl }}