mirror of
https://github.com/thomiceli/opengist.git
synced 2024-12-25 21:32:40 +00:00
22 lines
No EOL
632 B
YAML
22 lines
No EOL
632 B
YAML
{{- if .Values.serviceSsh.enabled }}
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: {{ include "opengist.fullname" . }}-ssh
|
|
labels:
|
|
{{- include "opengist.labels" . | nindent 4 }}
|
|
annotations:
|
|
{{- toYaml .Values.serviceSsh.annotations | nindent 4 }}
|
|
spec:
|
|
type: {{ .Values.serviceSsh.type }}
|
|
ports:
|
|
- port: {{ .Values.serviceSsh.port }}
|
|
targetPort: {{ .Values.serviceSsh.port }}
|
|
protocol: TCP
|
|
name: ssh
|
|
{{- if .Values.serviceSsh.nodePort }}
|
|
nodePort: {{ .Values.serviceSsh.nodePort }}
|
|
{{- end }}
|
|
selector:
|
|
{{- include "opengist.selectorLabels" . | nindent 4 }}
|
|
{{- end }} |