16 lines
346 B
YAML
16 lines
346 B
YAML
|
apiVersion: v1
|
||
|
kind: Service
|
||
|
metadata:
|
||
|
name: {{ include "opendmarc.fullname" . }}
|
||
|
labels:
|
||
|
{{- include "opendmarc.labels" . | nindent 4 }}
|
||
|
spec:
|
||
|
type: {{ .Values.service.type }}
|
||
|
ports:
|
||
|
- port: 8893
|
||
|
targetPort: 8893
|
||
|
protocol: TCP
|
||
|
name: dmarc
|
||
|
selector:
|
||
|
{{- include "opendmarc.selectorLabels" . | nindent 4 }}
|