Skip to content

Commit 91510eb

Browse files
Add cluster roles & rolebindings (#84)
* Add cluster roles and rolebindings * Bump chart version * Remove old files
1 parent c4b2491 commit 91510eb

File tree

4 files changed

+6
-8
lines changed

4 files changed

+6
-8
lines changed

charts/cluster-registry-client/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@ maintainers:
1515
- name: radu-catalina
1616
1717

18-
version: 0.1.5
18+
version: 0.1.6
1919
appVersion: v1.4.2

charts/cluster-registry-client/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# cluster-registry-client
22

3-
![Version: 0.1.5](https://img.shields.io/badge/Version-0.1.5-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v1.4.2](https://img.shields.io/badge/AppVersion-v1.4.2-informational?style=flat-square)
3+
![Version: 0.1.6](https://img.shields.io/badge/Version-0.1.6-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v1.4.2](https://img.shields.io/badge/AppVersion-v1.4.2-informational?style=flat-square)
44

55
Cluster Registry is a Rest API representing the source of record for all Kubernetes clusters in the infrastructure fleet. All clusters are automatically registered, and the information is accurately reflected in the Cluster Registry using a client-server architecture.
66

@@ -54,4 +54,4 @@ Cluster Registry is a Rest API representing the source of record for all Kuberne
5454
| terminationGracePeriodSeconds | int | `10` | |
5555

5656
----------------------------------------------
57-
Autogenerated from chart metadata using [helm-docs v1.11.3](https://github.com/norwoodj/helm-docs/releases/v1.11.3)
57+
Autogenerated from chart metadata using [helm-docs v1.11.0](https://github.com/norwoodj/helm-docs/releases/v1.11.0)

charts/cluster-registry-client/templates/role.yaml renamed to charts/cluster-registry-client/templates/cluster-role.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
apiVersion: rbac.authorization.k8s.io/v1
2-
kind: Role
2+
kind: ClusterRole
33
metadata:
44
name: cluster-registry-client
5-
namespace: {{ .Release.Namespace }}
65
labels:
76
{{- include "cluster-registry-client.labels" . | nindent 4 }}
87
rules:

charts/cluster-registry-client/templates/rolebinding.yaml renamed to charts/cluster-registry-client/templates/cluster-rolebinding.yaml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
apiVersion: rbac.authorization.k8s.io/v1
2-
kind: RoleBinding
2+
kind: ClusterRoleBinding
33
metadata:
44
name: cluster-registry-client-rolebinding
5-
namespace: {{ .Release.Namespace }}
65
labels:
76
{{- include "cluster-registry-client.labels" . | nindent 4 }}
87
roleRef:
98
apiGroup: rbac.authorization.k8s.io
10-
kind: Role
9+
kind: ClusterRole
1110
name: cluster-registry-client
1211
subjects:
1312
- kind: ServiceAccount

0 commit comments

Comments
 (0)