2023-10-16 19:14:53 +02:00
{{- if and .Values.agent (not .Values.preflight.enabled) }}
---
apiVersion : rbac.authorization.k8s.io/v1
kind : RoleBinding
metadata :
name : cilium-config-agent
namespace : {{ .Release.Namespace }}
{{- with .Values.annotations }}
annotations :
{{- toYaml . | nindent 4 }}
{{- end }}
labels :
app.kubernetes.io/part-of : cilium
roleRef :
apiGroup : rbac.authorization.k8s.io
kind : Role
name : cilium-config-agent
subjects :
- kind : ServiceAccount
name : {{ .Values.serviceAccounts.cilium.name | quote }}
namespace : {{ .Release.Namespace }}
{{- end}}
2022-08-12 10:20:19 +02:00
{{- if and .Values.agent (not .Values.preflight.enabled) .Values.serviceAccounts.cilium.create .Values.ingressController.enabled .Values.ingressController.secretsNamespace.name}}
2023-10-16 19:14:53 +02:00
---
2022-08-12 10:20:19 +02:00
apiVersion : rbac.authorization.k8s.io/v1
kind : RoleBinding
metadata :
name : cilium-secrets
namespace : {{ .Values.ingressController.secretsNamespace.name | quote }}
2023-10-16 19:14:53 +02:00
{{- with .Values.annotations }}
annotations :
{{- toYaml . | nindent 4 }}
{{- end }}
labels :
app.kubernetes.io/part-of : cilium
2022-08-12 10:20:19 +02:00
roleRef :
apiGroup : rbac.authorization.k8s.io
kind : Role
2023-10-16 19:14:53 +02:00
name : cilium-ingress-secrets
2022-08-12 10:20:19 +02:00
subjects :
- kind : ServiceAccount
name : {{ .Values.serviceAccounts.cilium.name | quote }}
namespace : {{ .Release.Namespace }}
{{- end }}
2023-10-16 19:14:53 +02:00
{{- if and .Values.agent (not .Values.preflight.enabled) .Values.serviceAccounts.cilium.create .Values.gatewayAPI.enabled .Values.gatewayAPI.secretsNamespace.name}}
---
apiVersion : rbac.authorization.k8s.io/v1
kind : RoleBinding
metadata :
name : cilium-gateway-secrets
namespace : {{ .Values.gatewayAPI.secretsNamespace.name | quote }}
{{- with .Values.annotations }}
annotations :
{{- toYaml . | nindent 4 }}
{{- end }}
labels :
app.kubernetes.io/part-of : cilium
roleRef :
apiGroup : rbac.authorization.k8s.io
kind : Role
name : cilium-gateway-secrets
subjects :
- kind : ServiceAccount
name : {{ .Values.serviceAccounts.cilium.name | quote }}
namespace : {{ .Release.Namespace }}
{{- end}}
{{- if and .Values.agent (not .Values.preflight.enabled) .Values.serviceAccounts.cilium.create .Values.envoyConfig.enabled .Values.envoyConfig.secretsNamespace.name}}
---
apiVersion : rbac.authorization.k8s.io/v1
kind : RoleBinding
metadata :
name : cilium-envoy-config-secrets
namespace : {{ .Values.envoyConfig.secretsNamespace.name | quote }}
{{- with .Values.annotations }}
annotations :
{{- toYaml . | nindent 4 }}
{{- end }}
labels :
app.kubernetes.io/part-of : cilium
roleRef :
apiGroup : rbac.authorization.k8s.io
kind : Role
name : cilium-envoy-config-secrets
subjects :
- kind : ServiceAccount
name : {{ .Values.serviceAccounts.cilium.name | quote }}
namespace : {{ .Release.Namespace }}
{{- end}}
{{- if and .Values.agent (not .Values.preflight.enabled) .Values.serviceAccounts.cilium.create .Values.bgpControlPlane.enabled .Values.bgpControlPlane.secretsNamespace.name}}
---
apiVersion : rbac.authorization.k8s.io/v1
kind : RoleBinding
metadata :
name : cilium-bgp-control-plane-secrets
namespace : {{ .Values.bgpControlPlane.secretsNamespace.name | quote }}
labels :
app.kubernetes.io/part-of : cilium
roleRef :
apiGroup : rbac.authorization.k8s.io
kind : Role
name : cilium-bgp-control-plane-secrets
subjects :
- kind : ServiceAccount
name : {{ .Values.serviceAccounts.cilium.name | quote }}
namespace : {{ .Release.Namespace }}
{{- end}}