Skip to content

Commit d3daaac

Browse files
committed
fix(helm): add overlayTest config to values.yaml.template
1 parent c316d22 commit d3daaac

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

helm/node-doctor/values.yaml.template

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -314,3 +314,30 @@ features:
314314
enableMetrics: true
315315
enableProfiling: false
316316
enableTracing: false
317+
318+
# Overlay test configuration for CNI connectivity testing
319+
overlayTest:
320+
# Enable overlay test pods - required for accurate CNI connectivity testing
321+
enabled: true
322+
323+
# Image for overlay test pods (minimal image, just needs to exist and be pingable)
324+
image:
325+
repository: busybox
326+
tag: "1.36"
327+
pullPolicy: IfNotPresent
328+
329+
# Resource limits for overlay test pods (minimal - just needs to sleep)
330+
resources:
331+
requests:
332+
cpu: 1m
333+
memory: 4Mi
334+
limits:
335+
cpu: 10m
336+
memory: 16Mi
337+
338+
# Update strategy
339+
updateStrategy:
340+
maxUnavailable: "25%"
341+
342+
# Priority class (empty = no priority class)
343+
priorityClassName: ""

0 commit comments

Comments
 (0)