File tree Expand file tree Collapse file tree 2 files changed +15
-1
lines changed Expand file tree Collapse file tree 2 files changed +15
-1
lines changed Original file line number Diff line number Diff line change @@ -442,6 +442,10 @@ flannel_awaiter_cpu: "25m"
442
442
flannel_awaiter_memory_request : " 50Mi"
443
443
flannel_awaiter_memory_limit : " 50Mi"
444
444
445
+ # configure flannel-awaiter to only check for nodes older than the current node
446
+ # and set timeout for nodes being reachable to 30s (down from the default of 2m).
447
+ flannel_awaiter_check_only_older_nodes : " true"
448
+
445
449
# nvidia device plugin
446
450
nvidia_device_plugin_cpu : " 10m"
447
451
nvidia_device_plugin_memory : " 50Mi"
Original file line number Diff line number Diff line change 39
39
memory : 50Mi
40
40
containers :
41
41
- name : delayed-install-cni
42
- image : container-registry.zalando.net/teapot/flannel-awaiter:master-15
42
+ image : container-registry.zalando.net/teapot/flannel-awaiter:master-16
43
+ env :
44
+ - name : NODE_NAME
45
+ valueFrom :
46
+ fieldRef :
47
+ fieldPath : spec.nodeName
43
48
command :
44
49
- /await
50
+ {{- if eq .Cluster.ConfigItems.flannel_awaiter_check_only_older_nodes "true" }}
51
+ args :
52
+ - " --own-node-name=$(NODE_NAME)"
53
+ - " --timeout=30s"
54
+ {{- end }}
45
55
stdin : true
46
56
resources :
47
57
requests :
You can’t perform that action at this time.
0 commit comments