Repository for dip
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

29 lines
735 B

apiVersion: kafka.strimzi.io/v1beta2
kind: KafkaUser
metadata:
name: service-account-{{ .Values.oauth.keycloakClientId }}-kafka-connect
namespace: {{ include "kafka-cluster.namespace" . }}
labels:
strimzi.io/cluster: {{ include "kafka-cluster.fullname" . }}
{{- include "kafka-cluster.labels" . | nindent 4 }}
spec:
authorization:
type: simple
acls:
- resource:
type: topic
name: "*"
patternType: literal
operations:
- Read
- Describe
- DescribeConfigs
- Write
- resource:
type: group
name: "*"
patternType: literal
operations:
- Read
- Write
- Describe