Skip to content

Commit

Permalink
fix: reference for serviceAccount
Browse files Browse the repository at this point in the history
  • Loading branch information
knechtionscoding committed Apr 5, 2023
1 parent f130059 commit 77e64b6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion charts/ecr-cleanup/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.2.2
version: 0.2.3

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
2 changes: 1 addition & 1 deletion charts/ecr-cleanup/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Deploys a job that cleans up an ECR repo based on the following rules.
3. Has the container been tagged with the word `keep`
4. Is the container the only tag in the ECR repository

![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: 1.16.0](https://img.shields.io/badge/AppVersion-1.16.0-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: 1.16.0](https://img.shields.io/badge/AppVersion-1.16.0-informational?style=flat-square)

## Values

Expand Down
8 changes: 4 additions & 4 deletions charts/ecr-cleanup/templates/rbac.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: rbac.authorization.k8s.io/v1
kind: Role
metadata:
namespace: {{ .Release.Namespace }}
name: {{ .Values.cron.serviceAccount.name }}
name: {{ .Values.serviceAccount.name }}
rules:
- apiGroups: ["v1"]
resources: ["pods"]
Expand All @@ -17,13 +17,13 @@ rules:
apiVersion: rbac.authorization.k8s.io/v1
kind: RoleBinding
metadata:
name: {{ .Values.cron.serviceAccount.name }}
name: {{ .Values.serviceAccount.name }}
namespace: {{.Release.Namespace}}
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: Role
name: {{ .Values.cron.serviceAccount.name }}
name: {{ .Values.serviceAccount.name }}
subjects:
- namespace: {{.Release.Namespace}}
kind: ServiceAccount
name: {{ .Values.cron.serviceAccount.name }}
name: {{ .Values.serviceAccount.name }}

0 comments on commit 77e64b6

Please sign in to comment.