Add chart strimzi-kafka-operator 0.47.0

This commit is contained in:
wbsong111
2025-09-08 09:19:22 +09:00
parent dcaf0c3edd
commit f58c922eaa
48 changed files with 38747 additions and 0 deletions
@@ -0,0 +1,22 @@
{{- if and .Values.rbac.create .Values.createGlobalResources -}}
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRole
metadata:
name: strimzi-kafka-client
labels:
app: {{ template "strimzi.name" . }}
chart: {{ template "strimzi.chart" . }}
component: client-role
release: {{ .Release.Name }}
heritage: {{ .Release.Service }}
rules:
- apiGroups:
- ""
resources:
# The Kafka clients (Connect, Mirror Maker, etc.) require "get" permissions to view the node they are on
# This information is used to generate a Rack ID (client.rack option) that is used for consuming from the closest
# replicas when enabled
- nodes
verbs:
- get
{{- end -}}