Skip to content

Commit 33079c7

Browse files
Merge pull request #182 from ravisantoshgudimetla/fix-tolerations
Fix tolerations
2 parents 0386842 + 3a97204 commit 33079c7

File tree

1 file changed

+20
-1
lines changed

1 file changed

+20
-1
lines changed

install/0000_00_cluster-version-operator_03_deployment.yaml

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,26 @@ spec:
5050
node-role.kubernetes.io/master: ""
5151
priorityClassName: "system-cluster-critical"
5252
tolerations:
53-
- operator: Exists
53+
- key: "node-role.kubernetes.io/master"
54+
operator: Exists
55+
effect: "NoSchedule"
56+
- key: "node.kubernetes.io/unschedulable"
57+
operator: Exists
58+
effect: "NoSchedule"
59+
- key: "node.kubernetes.io/network-unavailable"
60+
operator: Exists
61+
effect: "NoSchedule"
62+
- key: "node.kubernetes.io/not-ready"
63+
operator: "Exists"
64+
effect: "NoSchedule"
65+
- key: "node.kubernetes.io/unreachable"
66+
operator: "Exists"
67+
effect: "NoExecute"
68+
tolerationSeconds: 120
69+
- key: "node.kubernetes.io/not-ready"
70+
operator: "Exists"
71+
effect: "NoExecute"
72+
tolerationSeconds: 120
5473
volumes:
5574
- name: etc-ssl-certs
5675
hostPath:

0 commit comments

Comments
 (0)