oc-k8s/opencloud/templates/oc-auth/service.yaml
2025-03-27 13:04:29 +01:00

17 lines
270 B
YAML

{{- if index .Values.ocAuth.enabled }}
apiVersion: v1
kind: Service
metadata:
name: oc-auth-svc
labels:
app: oc-auth-svc
spec:
ports:
- name: http
port: 8080
protocol: TCP
targetPort: 8080
selector:
app: oc-auth
type: ClusterIP
{{- end }}