Skip to content

Commit 5c61c6b

Browse files
authored
Merge pull request #1904 from tobiasgiese/exposed-health-port-fix
Template exposed health port in helm chart
2 parents 31efc9e + 2af06bc commit 5c61c6b

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
@@ -56,7 +56,7 @@ spec:
5656
name: grpc
5757
- containerPort: {{ .Values.master.metricsPort | default "8081" }}
5858
name: metrics
59-
- containerPort: 8082
59+
- containerPort: {{ .Values.master.healthPort | default "8082" }}
6060
name: health
6161
env:
6262
- 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
@@ -97,7 +97,7 @@ spec:
9797
ports:
9898
- containerPort: {{ .Values.topologyUpdater.metricsPort | default "8081"}}
9999
name: metrics
100-
- containerPort: 8082
100+
- containerPort: {{ .Values.topologyUpdater.healthPort | default "8082" }}
101101
name: health
102102
volumeMounts:
103103
{{- 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
@@ -91,7 +91,7 @@ spec:
9191
ports:
9292
- containerPort: {{ .Values.worker.metricsPort | default "8081"}}
9393
name: metrics
94-
- containerPort: 8082
94+
- containerPort: {{ .Values.worker.healthPort | default "8082" }}
9595
name: health
9696
volumeMounts:
9797
- name: host-boot

0 commit comments

Comments
 (0)