8000 fix: allow get of serviceaccounts in secret reader clusterrole by KhrisRichardson-BO · Pull Request #49 · estahn/charts · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

fix: allow get of serviceaccounts in secret reader clusterrole #49

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
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
4 changes: 2 additions & 2 deletions .github/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ changelog:
labels:
- Semver-Major
- breaking-change
- title: 🎉 Features
- title: 🎉 Features
labels:
- Semver-Minor
- feature
- title: 🐛 Bug Fixes
- title: 🐛 Bug Fixes
labels:
- Semver-Minor
- bugfix
Expand Down
4 changes: 2 additions & 2 deletions charts/k8s-image-swapper/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: k8s-image-swapper
description: Mirror images into your own registry and swap image references automatically.
type: application
version: 1.0.0
version: 1.0.1
appVersion: 1.1.0
home: https://github.com/estahn/charts/tree/main/charts/k8s-image-swapper
keywords:
Expand All @@ -15,7 +15,7 @@ maintainers:
name: estahn
annotations:
artifacthub.io/changes: |
- "config.target.aws.accountId changed from integer to string"
- "add permissions to ClusterRole to allow reading of service accounts"
artifacthub.io/images: |
- name: k8s-image-webhook
image: ghcr.io/estahn/k8s-image-swapper:1.1.0
2 changes: 1 addition & 1 deletion charts/k8s-image-swapper/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# k8s-image-swapper

![Version: 1.0.0](https://img.shields.io/badge/Version-1.0.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.1.0](https://img.shields.io/badge/AppVersion-1.1.0-informational?style=flat-square)
![Version: 1.0.1](https://img.shields.io/badge/Version-1.0.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.1.0](https://img.shields.io/badge/AppVersion-1.1.0-informational?style=flat-square)

Mirror images into your own registry and swap image references automatically.

Expand Down
6 changes: 6 additions & 0 deletions charts/k8s-image-swapper/templates/clusterrole.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,10 @@ rules:
verbs:
- watch
- get
- apiGroups:
- ""
resources:
- serviceaccounts
verbs:
- get
{{- end }}
0