mirror of
https://github.com/kubernetes-sigs/node-feature-discovery.git
synced 2024-12-14 11:57:51 +00:00
Template exposed health port in helm chart
Signed-off-by: Tobias Giese <tgiese@nvidia.com>
This commit is contained in:
parent
31efc9e9a7
commit
2af06bc722
3 changed files with 3 additions and 3 deletions
deployment/helm/node-feature-discovery/templates
|
@ -56,7 +56,7 @@ spec:
|
||||||
name: grpc
|
name: grpc
|
||||||
- containerPort: {{ .Values.master.metricsPort | default "8081" }}
|
- containerPort: {{ .Values.master.metricsPort | default "8081" }}
|
||||||
name: metrics
|
name: metrics
|
||||||
- containerPort: 8082
|
- containerPort: {{ .Values.master.healthPort | default "8082" }}
|
||||||
name: health
|
name: health
|
||||||
env:
|
env:
|
||||||
- name: NODE_NAME
|
- name: NODE_NAME
|
||||||
|
|
|
@ -97,7 +97,7 @@ spec:
|
||||||
ports:
|
ports:
|
||||||
- containerPort: {{ .Values.topologyUpdater.metricsPort | default "8081"}}
|
- containerPort: {{ .Values.topologyUpdater.metricsPort | default "8081"}}
|
||||||
name: metrics
|
name: metrics
|
||||||
- containerPort: 8082
|
- containerPort: {{ .Values.topologyUpdater.healthPort | default "8082" }}
|
||||||
name: health
|
name: health
|
||||||
volumeMounts:
|
volumeMounts:
|
||||||
{{- if .Values.topologyUpdater.kubeletConfigPath | empty | not }}
|
{{- if .Values.topologyUpdater.kubeletConfigPath | empty | not }}
|
||||||
|
|
|
@ -91,7 +91,7 @@ spec:
|
||||||
ports:
|
ports:
|
||||||
- containerPort: {{ .Values.worker.metricsPort | default "8081"}}
|
- containerPort: {{ .Values.worker.metricsPort | default "8081"}}
|
||||||
name: metrics
|
name: metrics
|
||||||
- containerPort: 8082
|
- containerPort: {{ .Values.worker.healthPort | default "8082" }}
|
||||||
name: health
|
name: health
|
||||||
volumeMounts:
|
volumeMounts:
|
||||||
- name: host-boot
|
- name: host-boot
|
||||||
|
|
Loading…
Reference in a new issue