-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[create-pull-request] automated change
- Loading branch information
Showing
10 changed files
with
207 additions
and
129 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
26 changes: 26 additions & 0 deletions
26
addons/emrcontainers-chart/templates/caches-role-binding.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
apiVersion: rbac.authorization.k8s.io/v1 | ||
kind: ClusterRoleBinding | ||
metadata: | ||
name: ack-namespaces-cache-emrcontainers-controller | ||
roleRef: | ||
kind: ClusterRole | ||
apiGroup: rbac.authorization.k8s.io | ||
name: ack-namespaces-cache-emrcontainers-controller | ||
subjects: | ||
- kind: ServiceAccount | ||
name: ack-emrcontainers-controller | ||
namespace: {{ .Release.Namespace }} | ||
--- | ||
apiVersion: rbac.authorization.k8s.io/v1 | ||
kind: RoleBinding | ||
metadata: | ||
name: ack-configmaps-cache-emrcontainers-controller | ||
namespace: {{ .Release.Namespace }} | ||
roleRef: | ||
kind: Role | ||
apiGroup: rbac.authorization.k8s.io | ||
name: ack-configmaps-cache-emrcontainers-controller | ||
subjects: | ||
- kind: ServiceAccount | ||
name: ack-emrcontainers-controller | ||
namespace: {{ .Release.Namespace }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
apiVersion: rbac.authorization.k8s.io/v1 | ||
kind: ClusterRole | ||
metadata: | ||
name: ack-namespaces-cache-emrcontainers-controller | ||
rules: | ||
- apiGroups: | ||
- "" | ||
resources: | ||
- namespaces | ||
verbs: | ||
- get | ||
- list | ||
- watch | ||
--- | ||
apiVersion: rbac.authorization.k8s.io/v1 | ||
kind: Role | ||
metadata: | ||
name: ack-configmaps-cache-emrcontainers-controller | ||
namespace: {{ .Release.Namespace }} | ||
rules: | ||
- apiGroups: | ||
- "" | ||
resources: | ||
- configmaps | ||
verbs: | ||
- get | ||
- list | ||
- watch |
28 changes: 21 additions & 7 deletions
28
addons/emrcontainers-chart/templates/cluster-role-binding.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,35 @@ | ||
apiVersion: rbac.authorization.k8s.io/v1 | ||
{{ if eq .Values.installScope "cluster" }} | ||
apiVersion: rbac.authorization.k8s.io/v1 | ||
kind: ClusterRoleBinding | ||
metadata: | ||
name: {{ include "app.fullname" . }} | ||
roleRef: | ||
kind: ClusterRole | ||
{{ else }} | ||
apiGroup: rbac.authorization.k8s.io | ||
name: ack-emrcontainers-controller | ||
subjects: | ||
- kind: ServiceAccount | ||
name: {{ include "service-account.name" . }} | ||
namespace: {{ .Release.Namespace }} | ||
{{ else if .Values.watchNamespace }} | ||
{{ $namespaces := split "," .Values.watchNamespace }} | ||
{{ $fullname := include "app.fullname" . }} | ||
{{ $releaseNamespace := .Release.Namespace }} | ||
{{ $serviceAccountName := include "service-account.name" . }} | ||
{{ range $namespaces }} | ||
--- | ||
apiVersion: rbac.authorization.k8s.io/v1 | ||
kind: RoleBinding | ||
metadata: | ||
name: {{ include "app.fullname" . }} | ||
namespace: {{ .Release.Namespace }} | ||
name: {{ $fullname }} | ||
namespace: {{ . }} | ||
roleRef: | ||
kind: Role | ||
{{ end }} | ||
apiGroup: rbac.authorization.k8s.io | ||
name: ack-emrcontainers-controller | ||
subjects: | ||
- kind: ServiceAccount | ||
name: {{ include "service-account.name" . }} | ||
namespace: {{ .Release.Namespace }} | ||
name: {{ $serviceAccountName }} | ||
namespace: {{ $releaseNamespace }} | ||
{{ end }} | ||
{{ end }} |
128 changes: 14 additions & 114 deletions
128
addons/emrcontainers-chart/templates/cluster-role-controller.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,128 +1,28 @@ | ||
apiVersion: rbac.authorization.k8s.io/v1 | ||
{{ $labels := .Values.role.labels }} | ||
{{ $rules := include "controller-role-rules" . }} | ||
{{ if eq .Values.installScope "cluster" }} | ||
apiVersion: rbac.authorization.k8s.io/v1 | ||
kind: ClusterRole | ||
metadata: | ||
creationTimestamp: null | ||
name: ack-emrcontainers-controller | ||
labels: | ||
{{- range $key, $value := .Values.role.labels }} | ||
{{- range $key, $value := $labels }} | ||
{{ $key }}: {{ $value | quote }} | ||
{{- end }} | ||
{{ else }} | ||
{{- $rules }} | ||
{{ else if .Values.watchNamespace }} | ||
{{ $namespaces := split "," .Values.watchNamespace }} | ||
{{ range $namespaces }} | ||
--- | ||
apiVersion: rbac.authorization.k8s.io/v1 | ||
kind: Role | ||
metadata: | ||
creationTimestamp: null | ||
name: ack-emrcontainers-controller | ||
namespace: {{ . }} | ||
labels: | ||
{{- range $key, $value := .Values.role.labels }} | ||
{{- range $key, $value := $labels }} | ||
{{ $key }}: {{ $value | quote }} | ||
{{- end }} | ||
namespace: {{ .Release.Namespace }} | ||
{{- $rules }} | ||
{{ end }} | ||
rules: | ||
- apiGroups: | ||
- "" | ||
resources: | ||
- configmaps | ||
verbs: | ||
- get | ||
- list | ||
- patch | ||
- watch | ||
- apiGroups: | ||
- "" | ||
resources: | ||
- namespaces | ||
verbs: | ||
- get | ||
- list | ||
- watch | ||
- apiGroups: | ||
- "" | ||
resources: | ||
- secrets | ||
verbs: | ||
- get | ||
- list | ||
- patch | ||
- watch | ||
- apiGroups: | ||
- emrcontainers.services.k8s.aws | ||
resources: | ||
- jobruns | ||
verbs: | ||
- create | ||
- delete | ||
- get | ||
- list | ||
- patch | ||
- update | ||
- watch | ||
- apiGroups: | ||
- emrcontainers.services.k8s.aws | ||
resources: | ||
- jobruns/status | ||
verbs: | ||
- get | ||
- patch | ||
- update | ||
- apiGroups: | ||
- emrcontainers.services.k8s.aws | ||
resources: | ||
- virtualclusters | ||
verbs: | ||
- create | ||
- delete | ||
- get | ||
- list | ||
- patch | ||
- update | ||
- watch | ||
- apiGroups: | ||
- emrcontainers.services.k8s.aws | ||
resources: | ||
- virtualclusters/status | ||
verbs: | ||
- get | ||
- patch | ||
- update | ||
- apiGroups: | ||
- services.k8s.aws | ||
resources: | ||
- adoptedresources | ||
verbs: | ||
- create | ||
- delete | ||
- get | ||
- list | ||
- patch | ||
- update | ||
- watch | ||
- apiGroups: | ||
- services.k8s.aws | ||
resources: | ||
- adoptedresources/status | ||
verbs: | ||
- get | ||
- patch | ||
- update | ||
- apiGroups: | ||
- services.k8s.aws | ||
resources: | ||
- fieldexports | ||
verbs: | ||
- create | ||
- delete | ||
- get | ||
- list | ||
- patch | ||
- update | ||
- watch | ||
- apiGroups: | ||
- services.k8s.aws | ||
resources: | ||
- fieldexports/status | ||
verbs: | ||
- get | ||
- patch | ||
- update | ||
{{ end }} |
Oops, something went wrong.