Skip to content

Commit

Permalink
Fix tolerations
Browse files Browse the repository at this point in the history
  • Loading branch information
ravisantoshgudimetla committed May 3, 2019
1 parent 484df89 commit 2d987ff
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion manifests/02-deployment.yaml
Expand Up @@ -19,7 +19,17 @@ spec:
beta.kubernetes.io/os: linux
node-role.kubernetes.io/master: ""
tolerations:
- operator: Exists
- key: node-role.kubernetes.io/master
operator: Exists
effect: "NoSchedule"
- key: "node.kubernetes.io/unreachable"
operator: "Exists"
effect: "NoExecute"
tolerationSeconds: 120
- key: "node.kubernetes.io/not-ready"
operator: "Exists"
effect: "NoExecute"
tolerationSeconds: 120
serviceAccountName: ingress-operator
priorityClassName: system-cluster-critical
containers:
Expand Down

0 comments on commit 2d987ff

Please sign in to comment.