Skip to content

Commit 3cf5f95

Browse files
committed
updated confluent images to latest
1 parent d98eac3 commit 3cf5f95

File tree

12 files changed

+103
-18
lines changed

12 files changed

+103
-18
lines changed

examples/rbac/confluent/kafka.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ spec:
1010
- listener.name.internal.plain.sasl.server.callback.handler.class=io.confluent.security.auth.provider.ldap.LdapAuthenticateCallbackHandler
1111
- listener.name.external.plain.sasl.server.callback.handler.class=io.confluent.security.auth.provider.ldap.LdapAuthenticateCallbackHandler
1212
- listener.name.replication.plain.sasl.server.callback.handler.class=io.confluent.security.auth.provider.ldap.LdapAuthenticateCallbackHandler
13+
log4j:
14+
- log4j.logger.io.confluent.security.auth.provider.ldap.LdapGroupManager=DEBUG
1315
tls:
1416
secretRef: tls-group1
1517
metricReporter:

examples/rbac/confluent/kustomization.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ patchesStrategicMerge:
1313
- control-centre.yaml
1414
- kafka-connect.yaml
1515
- ksqldb.yaml
16-
- schema-registry.yaml
16+
- schema-registry.yaml

examples/rbac/confluent/ldap.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,6 @@ data:
9292
objectClass: groupOfNames
9393
description: A group of software developers and the apps they are responsible for
9494
cn: developers
95-
member: cn=emmy,ou=users,dc=test,dc=com
9695
member: cn=alice,ou=users,dc=test,dc=com
9796
1_kafka.ldif: |-
9897
dn: cn=kafka,ou=users,dc=test,dc=com

examples/rbac/kustomization.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ namespace: sandbox
44
resources:
55
- namespace.yaml
66
- confluent
7-
# - operator
7+
- operator
88
- rolebindings
99
- topics
1010

Lines changed: 84 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
1+
apiVersion: platform.confluent.io/v1beta1
2+
kind: ConfluentRolebinding
3+
metadata:
4+
name: test-1
5+
spec:
6+
principal:
7+
name: developers
8+
type: group
9+
role: SystemAdmin
10+
---
11+
apiVersion: platform.confluent.io/v1beta1
12+
kind: ConfluentRolebinding
13+
metadata:
14+
name: admin-groups-kafka-cluster-connect
15+
spec:
16+
clustersScopeByIds:
17+
connectClusterId: connect-cluster
18+
principal:
19+
name: developers
20+
type: group
21+
role: SystemAdmin
22+
---
23+
apiVersion: platform.confluent.io/v1beta1
24+
kind: ConfluentRolebinding
25+
metadata:
26+
name: admin-groups-kafka-cluster-sr
27+
spec:
28+
clustersScopeByIds:
29+
schemaRegistryClusterId: schema-registry
30+
principal:
31+
name: developers
32+
type: group
33+
role: SystemAdmin
34+
---
35+
apiVersion: platform.confluent.io/v1beta1
36+
kind: ConfluentRolebinding
37+
metadata:
38+
name: admin-groups-kafka-cluster-ksql
39+
spec:
40+
clustersScopeByIds:
41+
ksqlClusterId: ksqldb-cluster
42+
principal:
43+
name: developers
44+
type: group
45+
role: SystemAdmin
46+
---
47+
apiVersion: platform.confluent.io/v1beta1
48+
kind: ConfluentRolebinding
49+
metadata:
50+
name: admin-group-topics
51+
spec:
52+
principal:
53+
name: developers
54+
type: group
55+
resourcePatterns:
56+
- name: "*"
57+
resourceType: Topic
58+
role: ResourceOwner
59+
---
60+
apiVersion: platform.confluent.io/v1beta1
61+
kind: ConfluentRolebinding
62+
metadata:
63+
name: admin-group-groups
64+
spec:
65+
principal:
66+
name: developers
67+
type: group
68+
resourcePatterns:
69+
- name: "*"
70+
resourceType: Group
71+
role: ResourceOwner
72+
---
73+
apiVersion: platform.confluent.io/v1beta1
74+
kind: ConfluentRolebinding
75+
metadata:
76+
name: admin-group-transactionalid
77+
spec:
78+
principal:
79+
name: developers
80+
type: group
81+
resourcePatterns:
82+
- name: "*"
83+
resourceType: TransactionalId
84+
role: ResourceOwner

examples/rbac/rolebindings/kustomization.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,5 @@ resources:
33
- connect
44
- ksqldb
55
- schemaregistry
6-
- controlcenter-testadmin-rolebindings.yaml
6+
- controlcenter-testadmin-rolebindings.yaml
7+
- developers-groups.yaml

kustomize/base/confluent/control-centre.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ spec:
1111
failureThreshold: 5
1212
timeoutSeconds: 500
1313
image:
14-
application: confluentinc/cp-enterprise-control-center-operator:6.1.2.0
15-
init: confluentinc/cp-init-container-operator:6.1.2.0
14+
application: confluentinc/cp-enterprise-control-center:6.2.0
15+
init: confluentinc/confluent-init-container:2.1.0
1616
dataVolumeCapacity: 10Gi

kustomize/base/confluent/kafka-connect.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ metadata:
55
spec:
66
replicas: 1
77
image:
8-
application: confluentinc/cp-server-connect-operator:6.1.2.0
9-
init: confluentinc/cp-init-container-operator:6.1.2.0
8+
application: confluentinc/cp-server-connect:6.2.0
9+
init: confluentinc/confluent-init-container:2.1.0

kustomize/base/confluent/kafka.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ metadata:
55
spec:
66
replicas: 3
77
image:
8-
application: confluentinc/cp-server-operator:6.1.2.0
9-
init: confluentinc/cp-init-container-operator:6.1.2.0
8+
application: confluentinc/cp-server:6.2.0
9+
init: confluentinc/confluent-init-container:2.1.0
1010
dataVolumeCapacity: 10Gi

kustomize/base/confluent/ksqldb.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ metadata:
55
spec:
66
replicas: 1
77
image:
8-
application: confluentinc/cp-ksqldb-server-operator:6.1.2.0
9-
init: confluentinc/cp-init-container-operator:6.1.2.0
8+
application: confluentinc/cp-ksqldb-server:6.2.0
9+
init: confluentinc/confluent-init-container:2.1.0
1010
dataVolumeCapacity: 10Gi

0 commit comments

Comments
 (0)