Adding datacenter and peer support in k8s

This commit is contained in:
plm
2025-01-10 21:20:16 +01:00
parent 0b362983a3
commit 7d5931045d
7 changed files with 184 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
{{- if index .Values.ocPeer.enabled }}
apiVersion: v1
kind: Service
metadata:
name: oc-peer-svc
labels:
app: oc-peer-svc
spec:
ports:
- name: http
port: 8080
protocol: TCP
targetPort: 8080
selector:
app: oc-peer
type: ClusterIP
{{- end }}