Skip to content

Commit bd60339

Browse files
Fix tolerations
1 parent fac430d commit bd60339

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

config/kubemark.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,10 +58,10 @@ spec:
5858
- key: CriticalAddonsOnly
5959
operator: Exists
6060
- effect: NoExecute
61-
key: node.alpha.kubernetes.io/notReady
61+
key: node.kubernetes.io/not-ready
6262
operator: Exists
6363
- effect: NoExecute
64-
key: node.alpha.kubernetes.io/unreachable
64+
key: node.kubernetes.io/unreachable
6565
operator: Exists
6666
containers:
6767
- name: unready-nodes-gb

install/0000_30_machine-api-operator_09_deployment.yaml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,14 @@ spec:
4949
- key: "node-role.kubernetes.io/master"
5050
operator: "Exists"
5151
effect: "NoSchedule"
52+
- key: "node.kubernetes.io/unreachable"
53+
operator: "Exists"
54+
effect: "NoExecute"
55+
tolerationSeconds: 120
56+
- key: "node.kubernetes.io/not-ready"
57+
operator: "Exists"
58+
effect: "NoExecute"
59+
tolerationSeconds: 120
5260
volumes:
5361
- name: images
5462
configMap:

owned-manifests/machine-api-controllers.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ spec:
3131
- key: CriticalAddonsOnly
3232
operator: Exists
3333
- effect: NoExecute
34-
key: node.alpha.kubernetes.io/notReady
34+
key: node.kubernetes.io/not-ready
3535
operator: Exists
3636
- effect: NoExecute
3737
key: node.alpha.kubernetes.io/unreachable

0 commit comments

Comments
 (0)