diff --git a/charts/agent-k8s/CHANGELOG.md b/charts/agent-k8s/CHANGELOG.md index f0ba561..870e6af 100644 --- a/charts/agent-k8s/CHANGELOG.md +++ b/charts/agent-k8s/CHANGELOG.md @@ -9,6 +9,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [UNRELEASED] +## [v0.2.3] + +### Fixed + +- Fix invalid service account reference. + ## [v0.2.2] ### Fixed diff --git a/charts/agent-k8s/Chart.yaml b/charts/agent-k8s/Chart.yaml index 101cd91..f783060 100644 --- a/charts/agent-k8s/Chart.yaml +++ b/charts/agent-k8s/Chart.yaml @@ -19,7 +19,7 @@ description: | ![Agent in Kubernetes deployment diagram](/charts/agent-k8s/assets/agent-k8s-deploy-diagram.jpg) type: application -version: 0.2.2 +version: 0.2.3 appVersion: "0.1.33" home: https://github.com/Scalr/agent-helm/tree/master/charts/agent-k8s maintainers: diff --git a/charts/agent-k8s/README.md b/charts/agent-k8s/README.md index 0938adc..81195b0 100644 --- a/charts/agent-k8s/README.md +++ b/charts/agent-k8s/README.md @@ -1,6 +1,6 @@ # agent-k8s -![Version: 0.2.2](https://img.shields.io/badge/Version-0.2.2-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.1.33](https://img.shields.io/badge/AppVersion-0.1.33-informational?style=flat-square) +![Version: 0.2.3](https://img.shields.io/badge/Version-0.2.3-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.1.33](https://img.shields.io/badge/AppVersion-0.1.33-informational?style=flat-square) A Helm chart for the scalr-agent deployment on the Kubernetes cluster, where runs are executed in Pods in the same cluster. diff --git a/charts/agent-k8s/templates/role.yaml b/charts/agent-k8s/templates/role.yaml index 14e88da..6818f95 100644 --- a/charts/agent-k8s/templates/role.yaml +++ b/charts/agent-k8s/templates/role.yaml @@ -29,7 +29,7 @@ metadata: namespace: {{ .Release.Namespace | quote }} subjects: - kind: ServiceAccount - name: agent-k8s + name: {{ include "agent-k8s.serviceAccountName" . }} namespace: {{ .Release.Namespace | quote }} roleRef: kind: Role