oc-k8s/opencloud/templates/oc-catalog/service.yaml

17 lines
282 B
YAML
Raw Normal View History

2025-01-10 16:41:41 +01:00
{{- if index .Values.ocCatalog.enabled }}
apiVersion: v1
kind: Service
metadata:
name: oc-catalog-svc
labels:
app: oc-catalog-svc
spec:
ports:
- name: http
port: 8080
protocol: TCP
targetPort: 8080
selector:
app: oc-catalog
type: ClusterIP
{{- end }}