Skip to content

Commit

Permalink
Fixed incorrect resource lists
Browse files Browse the repository at this point in the history
  • Loading branch information
glenndehaan committed Apr 27, 2023
1 parent c51261c commit 5261022
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion charts/kube-hook/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,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: 1.0.1
version: 1.0.2

# 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/kube-hook/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# kube-hook

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

A Kubernetes Webhook server that allows you to remotely restart deployments

Expand Down
4 changes: 2 additions & 2 deletions charts/kube-hook/templates/clusterrole.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ rules:
resources: ["deployments"]
verbs: ["get", "list", "update", "patch"]
- apiGroups: [""]
resources: ["replicaset"]
resources: ["replicasets"]
verbs: ["get", "list"]
- apiGroups: [""]
resources: ["node"]
resources: ["nodes"]
verbs: ["get", "list"]
{{- end }}

0 comments on commit 5261022

Please sign in to comment.