Skip to content

Commit e838324

Browse files
authored
Merge pull request #1905 from k8s-infra-cherrypick-robot/cherry-pick-1904-to-release-0.16
[release-0.16] Template exposed health port in helm chart
2 parents 4290c2a + a8f2ab1 commit e838324

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

deployment/helm/node-feature-discovery/templates/master.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ spec:
5555
name: grpc
5656
- containerPort: {{ .Values.master.metricsPort | default "8081" }}
5757
name: metrics
58-
- containerPort: 8082
58+
- containerPort: {{ .Values.master.healthPort | default "8082" }}
5959
name: health
6060
env:
6161
- name: NODE_NAME

deployment/helm/node-feature-discovery/templates/topologyupdater.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ spec:
9393
ports:
9494
- containerPort: {{ .Values.topologyUpdater.metricsPort | default "8081"}}
9595
name: metrics
96-
- containerPort: 8082
96+
- containerPort: {{ .Values.topologyUpdater.healthPort | default "8082" }}
9797
name: health
9898
volumeMounts:
9999
{{- if .Values.topologyUpdater.kubeletConfigPath | empty | not }}

deployment/helm/node-feature-discovery/templates/worker.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ spec:
8787
ports:
8888
- containerPort: {{ .Values.worker.metricsPort | default "8081"}}
8989
name: metrics
90-
- containerPort: 8082
90+
- containerPort: {{ .Values.worker.healthPort | default "8082" }}
9191
name: health
9292
volumeMounts:
9393
- name: host-boot

0 commit comments

Comments
 (0)