Changeset 13:f80091276bf6
Updated manifests
author | unexist |
---|---|
date | Wed, 01 Sep 2021 10:07:03 +0200 |
parents | 0d012dc0e6e6 |
children | 0cc60b734c4b |
files | deployment/kubernetes/redpanda/redpanda-deployment.yaml deployment/kubernetes/redpanda/redpanda-service.yaml |
diffstat | 2 files changed, 13 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- a/deployment/kubernetes/redpanda/redpanda-deployment.yaml Tue Aug 31 20:25:05 2021 +0200 +++ b/deployment/kubernetes/redpanda/redpanda-deployment.yaml Wed Sep 01 10:07:03 2021 +0200 @@ -19,6 +19,9 @@ image: vectorized/redpanda:latest imagePullPolicy: Always ports: - - containerPort: 9092 - name: http + - name: kafka + containerPort: 9092 + protocol: TCP + - name: rpc + containerPort: 33145 protocol: TCP \ No newline at end of file
--- a/deployment/kubernetes/redpanda/redpanda-service.yaml Tue Aug 31 20:25:05 2021 +0200 +++ b/deployment/kubernetes/redpanda/redpanda-service.yaml Wed Sep 01 10:07:03 2021 +0200 @@ -5,10 +5,15 @@ labels: networking.knative.dev/visibility: cluster-local spec: + type: ClusterIP ports: - - name: http + - name: kafka port: 9092 targetPort: 9092 + protocol: TCP + - name: rpc + port: 33145 + targetPort: 33145 + protocol: TCP selector: - app.kubernetes.io/name: redpanda - type: ClusterIP \ No newline at end of file + app.kubernetes.io/name: redpanda \ No newline at end of file