mirror of https://github.com/k3s-io/k3s
Merge pull request #69737 from qingling128/master
Add tolerations for Stackdriver Logging and Metadata Agents.pull/58/head
commit
8928e70af9
|
@ -101,6 +101,11 @@ spec:
|
|||
nodeSelector:
|
||||
beta.kubernetes.io/fluentd-ds-ready: "true"
|
||||
terminationGracePeriodSeconds: 60
|
||||
tolerations:
|
||||
- operator: "Exists"
|
||||
effect: "NoExecute"
|
||||
- operator: "Exists"
|
||||
effect: "NoSchedule"
|
||||
volumes:
|
||||
- name: varlog
|
||||
hostPath:
|
||||
|
|
|
@ -58,6 +58,11 @@ spec:
|
|||
restartPolicy: Always
|
||||
schedulerName: default-scheduler
|
||||
terminationGracePeriodSeconds: 30
|
||||
tolerations:
|
||||
- operator: "Exists"
|
||||
effect: "NoExecute"
|
||||
- operator: "Exists"
|
||||
effect: "NoSchedule"
|
||||
updateStrategy:
|
||||
rollingUpdate:
|
||||
maxUnavailable: 1
|
||||
|
|
Loading…
Reference in New Issue