cert-manager-webhook-example/deploy/pdns-webhook/templates/service.yaml
Timothy Dawson 07a65acff0
Added Better Docs and renamed helm folder (#8)
Co-authored-by: Tim Dawson <tidawson@redhat.com>
2021-07-20 02:59:28 +12:00

19 lines
512 B
YAML

apiVersion: v1
kind: Service
metadata:
name: {{ include "example-webhook.fullname" . }}
labels:
app: {{ include "example-webhook.name" . }}
chart: {{ include "example-webhook.chart" . }}
release: {{ .Release.Name }}
heritage: {{ .Release.Service }}
spec:
type: {{ .Values.service.type }}
ports:
- port: {{ .Values.service.port }}
targetPort: 8043
protocol: TCP
name: https
selector:
app: {{ include "example-webhook.name" . }}
release: {{ .Release.Name }}