mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-12-15 19:04:23 -05:00
968cdc1a38
* cli: move internal packages Signed-off-by: Moritz Sanft <58110325+msanft@users.noreply.github.com> * cli: fix buildfiles Signed-off-by: Moritz Sanft <58110325+msanft@users.noreply.github.com> * bazel: fix exclude dir Signed-off-by: Moritz Sanft <58110325+msanft@users.noreply.github.com> * cli: move back libraries that will not be used by TF provider Signed-off-by: Moritz Sanft <58110325+msanft@users.noreply.github.com> --------- Signed-off-by: Moritz Sanft <58110325+msanft@users.noreply.github.com>
49 lines
1.6 KiB
YAML
49 lines
1.6 KiB
YAML
{{- if .Values.startupapicheck.enabled }}
|
|
{{- if .Values.global.rbac.create }}
|
|
# create certificate role
|
|
apiVersion: rbac.authorization.k8s.io/v1
|
|
kind: Role
|
|
metadata:
|
|
name: {{ template "startupapicheck.fullname" . }}:create-cert
|
|
namespace: {{ include "cert-manager.namespace" . }}
|
|
labels:
|
|
app: {{ include "startupapicheck.name" . }}
|
|
app.kubernetes.io/name: {{ include "startupapicheck.name" . }}
|
|
app.kubernetes.io/instance: {{ .Release.Name }}
|
|
app.kubernetes.io/component: "startupapicheck"
|
|
{{- include "labels" . | nindent 4 }}
|
|
{{- with .Values.startupapicheck.rbac.annotations }}
|
|
annotations:
|
|
{{- toYaml . | nindent 4 }}
|
|
{{- end }}
|
|
rules:
|
|
- apiGroups: ["cert-manager.io"]
|
|
resources: ["certificates"]
|
|
verbs: ["create"]
|
|
---
|
|
apiVersion: rbac.authorization.k8s.io/v1
|
|
kind: RoleBinding
|
|
metadata:
|
|
name: {{ include "startupapicheck.fullname" . }}:create-cert
|
|
namespace: {{ include "cert-manager.namespace" . }}
|
|
labels:
|
|
app: {{ include "startupapicheck.name" . }}
|
|
app.kubernetes.io/name: {{ include "startupapicheck.name" . }}
|
|
app.kubernetes.io/instance: {{ .Release.Name }}
|
|
app.kubernetes.io/component: "startupapicheck"
|
|
{{- include "labels" . | nindent 4 }}
|
|
{{- with .Values.startupapicheck.rbac.annotations }}
|
|
annotations:
|
|
{{- toYaml . | nindent 4 }}
|
|
{{- end }}
|
|
roleRef:
|
|
apiGroup: rbac.authorization.k8s.io
|
|
kind: Role
|
|
name: {{ template "startupapicheck.fullname" . }}:create-cert
|
|
subjects:
|
|
- kind: ServiceAccount
|
|
name: {{ template "startupapicheck.serviceAccountName" . }}
|
|
namespace: {{ include "cert-manager.namespace" . }}
|
|
{{- end }}
|
|
{{- end }}
|