Skip to content

Commit

Permalink
Merge pull request #1426 from FabianKramm/main
Browse files Browse the repository at this point in the history
feat: add node port config
  • Loading branch information
FabianKramm authored Dec 21, 2023
2 parents 0146623 + febf2b8 commit a7b2680
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 0 deletions.
2 changes: 2 additions & 0 deletions charts/eks/templates/syncer-service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,14 @@ spec:
{{- if not .Values.headless }}
targetPort: 8443
{{- end }}
nodePort: {{ .Values.service.httpsNodePort }}
protocol: TCP
- name: kubelet
port: 10250
{{- if not .Values.headless }}
targetPort: 8443
{{- end }}
nodePort: {{ .Values.service.kubeletNodePort }}
protocol: TCP
{{- if .Values.service.externalIPs }}
externalIPs:
Expand Down
2 changes: 2 additions & 0 deletions charts/k0s/templates/service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,14 @@ spec:
{{- if not .Values.headless }}
targetPort: 8443
{{- end }}
nodePort: {{ .Values.service.httpsNodePort }}
protocol: TCP
- name: kubelet
port: 10250
{{- if not .Values.headless }}
targetPort: 8443
{{- end }}
nodePort: {{ .Values.service.kubeletNodePort }}
protocol: TCP
{{- if .Values.service.externalIPs }}
externalIPs:
Expand Down
2 changes: 2 additions & 0 deletions charts/k3s/templates/service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,14 @@ spec:
{{- if not .Values.headless }}
targetPort: 8443
{{- end }}
nodePort: {{ .Values.service.httpsNodePort }}
protocol: TCP
- name: kubelet
port: 10250
{{- if not .Values.headless }}
targetPort: 8443
{{- end }}
nodePort: {{ .Values.service.kubeletNodePort }}
protocol: TCP
{{- if .Values.service.externalIPs }}
externalIPs:
Expand Down
2 changes: 2 additions & 0 deletions charts/k8s/templates/syncer-service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,14 @@ spec:
{{- if not .Values.headless }}
targetPort: 8443
{{- end }}
nodePort: {{ .Values.service.httpsNodePort }}
protocol: TCP
- name: kubelet
port: 10250
{{- if not .Values.headless }}
targetPort: 8443
{{- end }}
nodePort: {{ .Values.service.kubeletNodePort }}
protocol: TCP
{{- if .Values.service.externalIPs }}
externalIPs:
Expand Down

0 comments on commit a7b2680

Please sign in to comment.