File tree Expand file tree Collapse file tree 2 files changed +32
-0
lines changed Expand file tree Collapse file tree 2 files changed +32
-0
lines changed Original file line number Diff line number Diff line change
1
+ apiVersion : apps/v1beta1
2
+ kind : Deployment
3
+ metadata :
4
+ name : schema-registry
5
+ namespace : kafka
6
+ spec :
7
+ replicas : 1
8
+ template :
9
+ metadata :
10
+ labels :
11
+ app : schema-registry
12
+ spec :
13
+ containers :
14
+ - name : schema-registry
15
+ image : confluentinc/cp-schema-registry@sha256:ac1eb34d9a60ce8904eb1bc01fd94bf1f6513924ca507734679d4b513133714c
16
+ env :
17
+ - name : SCHEMA_REGISTRY_KAFKASTORE_CONNECTION_URL
18
+ value : zookeeper:2181
19
+ - name : SCHEMA_REGISTRY_HOST_NAME
20
+ value : schema-registry
21
+ ports :
22
+ - containerPort : 8081
Original file line number Diff line number Diff line change
1
+ apiVersion : v1
2
+ kind : Service
3
+ metadata :
4
+ name : schema-registry
5
+ namespace : kafka
6
+ spec :
7
+ ports :
8
+ - port : 8081
9
+ selector :
10
+ app : schema-registry
You can’t perform that action at this time.
0 commit comments