File tree Expand file tree Collapse file tree 3 files changed +36
-3
lines changed Expand file tree Collapse file tree 3 files changed +36
-3
lines changed Original file line number Diff line number Diff line change @@ -2,9 +2,9 @@ apiVersion: kustomize.config.k8s.io/v1beta1
22kind : Kustomization
33namespace : argocd
44resources :
5- # - confluent-dev.yaml
5+ - confluent-dev.yaml
66# - confluent-prod.yaml
7- # - confluent-test.yaml
7+ - confluent-test.yaml
88- ldap.yaml
99- operator.yaml
1010- operator-repo.yaml
Original file line number Diff line number Diff line change @@ -4,4 +4,5 @@ namespace: dev
44resources :
55 - ../base
66patchesStrategicMerge :
7- - kafka.yaml
7+ - kafka.yaml
8+ - schema-registry.yaml
Original file line number Diff line number Diff line change 1+ apiVersion : platform.confluent.io/v1beta1
2+ kind : SchemaRegistry
3+ metadata :
4+ name : schemaregistry
5+ spec :
6+ replicas : 0
7+ image :
8+ application : confluentinc/cp-schema-registry:7.0.1
9+ init : confluentinc/confluent-init-container:2.2.0
10+ tls :
11+ autoGeneratedCerts : true
12+ configOverrides :
13+ server :
14+ - kafkastore.topic.replication.factor=1
15+ authorization :
16+ type : rbac
17+ dependencies :
18+ kafka :
19+ bootstrapEndpoint : kafka:9071
20+ authentication :
21+ type : mtls
22+ tls :
23+ enabled : true
24+ mds :
25+ endpoint : https://kafka:8090
26+ tokenKeyPair :
27+ secretRef : mds-public
28+ authentication :
29+ type : bearer
30+ bearer :
31+ secretRef : sealed-credential
32+
You can’t perform that action at this time.
0 commit comments