Files
svc-api-x/build/helm/templates/service.yaml
T
2025-09-09 12:43:41 +03:00

17 lines
360 B
YAML

---
apiVersion: v1
kind: Service
metadata:
name: '{{ .Chart.Name }}'
labels:
app: '{{ .Chart.Name }}'
stand: '{{ .Values.stand }}'
spec:
ports:
- port: {{ .Values.deployment.containerPort }}
targetPort: {{ .Values.deployment.containerPort }}
protocol: TCP
selector:
app: '{{ .Chart.Name }}'
stand: '{{ .Values.stand }}'