-
-
Save horakg/25279190f8993ccfffd48da519c301eb to your computer and use it in GitHub Desktop.
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
apiVersion: v1 | |
kind: ServiceAccount | |
metadata: | |
name: {{ include "exoscale-webhook.fullname" . }} | |
labels: | |
app: {{ include "exoscale-webhook.name" . }} | |
chart: {{ include "exoscale-webhook.chart" . }} | |
release: {{ .Release.Name }} | |
heritage: {{ .Release.Service }} | |
--- | |
# Grant the webhook permission to read the ConfigMap containing the Kubernetes | |
# apiserver's requestheader-ca-certificate. | |
# This ConfigMap is automatically created by the Kubernetes apiserver. | |
apiVersion: rbac.authorization.k8s.io/v1 | |
kind: RoleBinding | |
metadata: | |
name: {{ include "exoscale-webhook.fullname" . }}:webhook-authentication-reader | |
namespace: kube-system | |
labels: | |
app: {{ include "exoscale-webhook.name" . }} | |
chart: {{ include "exoscale-webhook.chart" . }} | |
release: {{ .Release.Name }} | |
heritage: {{ .Release.Service }} | |
roleRef: | |
apiGroup: rbac.authorization.k8s.io | |
kind: Role | |
name: extension-apiserver-authentication-reader | |
subjects: | |
- apiGroup: "" | |
kind: ServiceAccount | |
name: {{ include "exoscale-webhook.fullname" . }} | |
namespace: {{ .Release.Namespace }} | |
--- | |
# apiserver gets the auth-delegator role to delegate auth decisions to | |
# the core apiserver | |
apiVersion: rbac.authorization.k8s.io/v1 | |
kind: ClusterRoleBinding | |
metadata: | |
name: {{ include "exoscale-webhook.fullname" . }}:auth-delegator | |
labels: | |
app: {{ include "exoscale-webhook.name" . }} | |
chart: {{ include "exoscale-webhook.chart" . }} | |
release: {{ .Release.Name }} | |
heritage: {{ .Release.Service }} | |
roleRef: | |
apiGroup: rbac.authorization.k8s.io | |
kind: ClusterRole | |
name: system:auth-delegator | |
subjects: | |
- apiGroup: "" | |
kind: ServiceAccount | |
name: {{ include "exoscale-webhook.fullname" . }} | |
namespace: {{ .Release.Namespace }} | |
--- | |
# Grant cert-manager permission to validate using our apiserver | |
apiVersion: rbac.authorization.k8s.io/v1 | |
kind: ClusterRole | |
metadata: | |
name: {{ include "exoscale-webhook.fullname" . }}:domain-solver | |
labels: | |
app: {{ include "exoscale-webhook.name" . }} | |
chart: {{ include "exoscale-webhook.chart" . }} | |
release: {{ .Release.Name }} | |
heritage: {{ .Release.Service }} | |
rules: | |
- apiGroups: | |
- {{ .Values.groupName }} | |
resources: | |
- '*' | |
verbs: | |
- 'create' | |
--- | |
apiVersion: rbac.authorization.k8s.io/v1 | |
kind: ClusterRoleBinding | |
metadata: | |
name: {{ include "exoscale-webhook.fullname" . }}:domain-solver | |
labels: | |
app: {{ include "exoscale-webhook.name" . }} | |
chart: {{ include "exoscale-webhook.chart" . }} | |
release: {{ .Release.Name }} | |
heritage: {{ .Release.Service }} | |
roleRef: | |
apiGroup: rbac.authorization.k8s.io | |
kind: ClusterRole | |
name: {{ include "exoscale-webhook.fullname" . }}:domain-solver | |
subjects: | |
- apiGroup: "" | |
kind: ServiceAccount | |
name: {{ .Values.certManager.serviceAccountName }} | |
namespace: {{ .Values.certManager.namespace }} | |
--- | |
# Grant the webhook permission to read the secrets containing the credentials | |
apiVersion: rbac.authorization.k8s.io/v1 | |
kind: Role | |
metadata: | |
name: {{ include "exoscale-webhook.fullname" . }}:secrets-reader | |
namespace: {{ .Release.Namespace }} | |
labels: | |
app: {{ include "exoscale-webhook.name" . }} | |
chart: {{ include "exoscale-webhook.chart" . }} | |
release: {{ .Release.Name }} | |
heritage: {{ .Release.Service }} | |
rules: | |
- apiGroups: | |
- '' | |
resources: | |
- 'secrets' | |
verbs: | |
- 'get' | |
--- | |
# Grant the webhook permission to read the secrets containing the credentials | |
apiVersion: rbac.authorization.k8s.io/v1 | |
kind: RoleBinding | |
metadata: | |
name: {{ include "exoscale-webhook.fullname" . }}:secrets-reader | |
namespace: {{ .Release.Namespace }} | |
labels: | |
app: {{ include "exoscale-webhook.name" . }} | |
chart: {{ include "exoscale-webhook.chart" . }} | |
release: {{ .Release.Name }} | |
heritage: {{ .Release.Service }} | |
roleRef: | |
apiGroup: rbac.authorization.k8s.io | |
kind: Role | |
name: {{ include "exoscale-webhook.fullname" . }}:secrets-reader | |
subjects: | |
- apiGroup: "" | |
kind: ServiceAccount | |
name: {{ include "exoscale-webhook.fullname" . }} | |
namespace: {{ .Release.Namespace }} | |
--- | |
apiVersion: rbac.authorization.k8s.io/v1 | |
kind: ClusterRole | |
metadata: | |
name: {{ include "exoscale-webhook.fullname" . }}:flowcontrol-solver | |
labels: | |
app: {{ include "exoscale-webhook.name" . }} | |
chart: {{ include "exoscale-webhook.chart" . }} | |
release: {{ .Release.Name }} | |
heritage: {{ .Release.Service }} | |
rules: | |
- apiGroups: | |
- "flowcontrol.apiserver.k8s.io" | |
resources: | |
- 'prioritylevelconfigurations' | |
- 'flowschemas' | |
verbs: | |
- 'list' | |
- 'watch' | |
--- | |
apiVersion: rbac.authorization.k8s.io/v1 | |
kind: ClusterRoleBinding | |
metadata: | |
name: {{ include "exoscale-webhook.fullname" . }}:flowcontrol-solver | |
labels: | |
app: {{ include "exoscale-webhook.name" . }} | |
chart: {{ include "exoscale-webhook.chart" . }} | |
release: {{ .Release.Name }} | |
heritage: {{ .Release.Service }} | |
roleRef: | |
apiGroup: rbac.authorization.k8s.io | |
kind: ClusterRole | |
name: {{ include "exoscale-webhook.fullname" . }}:flowcontrol-solver | |
subjects: | |
- apiGroup: "" | |
kind: ServiceAccount | |
name: {{ include "exoscale-webhook.fullname" . }} | |
namespace: {{ .Release.Namespace | quote }} | |
--- |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment