oc-deploy/Helm/oc-mongo-express/templates/service.yaml

13 lines
276 B
YAML
Raw Normal View History

2024-08-30 16:13:10 +02:00
apiVersion: v1
kind: Service
metadata:
name: {{ .Release.Name }}-mongo-express
spec:
selector:
app: mongo-express
ports:
- protocol: TCP
port: {{ .Values.service.port }}
targetPort: {{ .Values.service.targetPort }}
type: {{ .Values.service.type }}