Skip to content

Commit 1d2a4c1

Browse files
committed
adding sr patch
1 parent 0e326f1 commit 1d2a4c1

File tree

3 files changed

+36
-3
lines changed

3 files changed

+36
-3
lines changed

incubator/argo-cd/argo-apps/kustomization.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ apiVersion: kustomize.config.k8s.io/v1beta1
22
kind: Kustomization
33
namespace: argocd
44
resources:
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

incubator/argo-cd/environments/dev/kustomization.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,5 @@ namespace: dev
44
resources:
55
- ../base
66
patchesStrategicMerge:
7-
- kafka.yaml
7+
- kafka.yaml
8+
- schema-registry.yaml
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
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+

0 commit comments

Comments
 (0)