22 lines
461 B
YAML
22 lines
461 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: {{ .Values.service.name }}
|
|
namespace: {{ .Release.Namespace }}
|
|
{{- with .Values.service.annotations }}
|
|
annotations:
|
|
{{- toYaml . | nindent 4 }}
|
|
{{- end }}
|
|
spec:
|
|
selector:
|
|
app: {{ .Values.name }}
|
|
release: {{ .Values.release }}
|
|
ports:
|
|
- protocol: TCP
|
|
name: p2papi
|
|
port: 6666
|
|
targetPort: 6666
|
|
- protocol: UDP
|
|
name: p2papi
|
|
port: 6666
|
|
targetPort: 6666 |