Files
devops-infra-helm-charts-gcp/helm-templates/canary-bot-gcp/templates/service.yaml
T
2026-08-26 03:39:42 +05:30

20 lines
473 B
YAML

apiVersion: v1
kind: Service
metadata:
{{- with .Values.service.annotations }}
annotations:
{{ toYaml . | indent 4}}
{{- end }}
name: {{ include "canary-bot-gcp.fullname" . }}
labels:
{{- include "canary-bot-gcp.labels" . | nindent 4 }}
spec:
type: {{ .Values.service.type }}
ports:
- port: {{ .Values.service.port }}
targetPort: http
protocol: TCP
name: http
selector:
{{- include "canary-bot-gcp.selectorLabels" . | nindent 4 }}