github.com/oam-dev/kubevela@v1.9.11/hack/load-test/tolerate-hollow-node.cue (about)

     1  "tolerate-hollow-node": {
     2  	annotations: {}
     3  	attributes: {}
     4  	description: "Tolerate hollow nodes"
     5  	labels: {}
     6  	type: "trait"
     7  }
     8  
     9  template: {
    10  	patch: spec: template: spec: {
    11  		tolerations: [{
    12  			key:      "node.kubernetes.io/network-unavailable"
    13  			operator: "Exists"
    14  			effect:   "NoSchedule"
    15  		}]
    16  	}
    17  	parameter: {}
    18  }