Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 28 of 28 for onExecute (0.23 sec)

  1. operator/cmd/mesh/testdata/manifest-generate/output/ztunnel.golden.yaml

          terminationGracePeriodSeconds: 30
          tolerations:
          - effect: NoSchedule
            operator: Exists
          - key: CriticalAddonsOnly
            operator: Exists
          - effect: NoExecute
            operator: Exists
          volumes:
          - name: istio-token
            projected:
              sources:
              - serviceAccountToken:
                  audience: istio-ca
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 31 23:49:40 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. cluster/addons/node-problem-detector/npd.yaml

          - name: localtime
            hostPath:
              path: /etc/localtime
              type: "FileOrCreate"
          serviceAccountName: node-problem-detector
          tolerations:
          - operator: "Exists"
            effect: "NoExecute"
          - operator: "Exists"
            effect: "NoSchedule"
          - key: "CriticalAddonsOnly"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 04:14:02 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. cluster/addons/fluentd-gcp/fluentd-gcp-ds.yaml

          # END_PROMETHEUS_TO_SD
          nodeSelector:
            kubernetes.io/os: linux
          terminationGracePeriodSeconds: 60
          tolerations:
          - operator: "Exists"
            effect: "NoExecute"
          - operator: "Exists"
            effect: "NoSchedule"
          volumes:
          - name: varlog
            hostPath:
              path: /var/log
          - name: varlibdockercontainers
            hostPath:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 27 17:54:10 UTC 2021
    - 4.1K bytes
    - Viewed (0)
  4. pkg/util/flag/flags_test.go

    				{Key: "qux", Value: "", Effect: "NoSchedule"},
    			},
    		},
    		{
    			f: "--t=dedicated-for=user1:NoExecute,baz:NoSchedule,foo-bar=:NoSchedule",
    			t: []v1.Taint{
    				{Key: "dedicated-for", Value: "user1", Effect: "NoExecute"},
    				{Key: "baz", Value: "", Effect: "NoSchedule"},
    				{Key: "foo-bar", Value: "", Effect: "NoSchedule"},
    			},
    		},
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 14 10:45:23 UTC 2021
    - 8.8K bytes
    - Viewed (0)
  5. manifests/charts/ztunnel/templates/daemonset.yaml

    {{- end }}
          serviceAccountName: ztunnel
          tolerations:
            - effect: NoSchedule
              operator: Exists
            - key: CriticalAddonsOnly
              operator: Exists
            - effect: NoExecute
              operator: Exists
          containers:
          - name: istio-proxy
    {{- if contains "/" .Values.image }}
            image: "{{ .Values.image }}"
    {{- else }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 01:33:52 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  6. cluster/addons/calico-policy-controller/calico-node-daemonset.yaml

                type: FileOrCreate
          tolerations:
            # Make sure calico/node gets scheduled on all nodes.
            - effect: NoSchedule
              operator: Exists
            - effect: NoExecute
              operator: Exists
            - key: CriticalAddonsOnly
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 25 12:18:44 UTC 2021
    - 6K bytes
    - Viewed (0)
  7. cluster/addons/dns/nodelocaldns/nodelocaldns.yaml

          serviceAccountName: node-local-dns
          hostNetwork: true
          dnsPolicy: Default  # Don't use cluster DNS.
          tolerations:
          - key: "CriticalAddonsOnly"
            operator: "Exists"
          - effect: "NoExecute"
            operator: "Exists"
          - effect: "NoSchedule"
            operator: "Exists"
          containers:
          - name: node-cache
            image: registry.k8s.io/dns/k8s-dns-node-cache:1.23.1
            resources:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 03:19:02 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  8. manifests/charts/istio-cni/templates/daemonset.yaml

            - effect: NoSchedule
              operator: Exists
            # Mark the pod as a critical add-on for rescheduling.
            - key: CriticalAddonsOnly
              operator: Exists
            - effect: NoExecute
              operator: Exists
          priorityClassName: system-node-critical
          serviceAccountName: {{ template "name" . }}
          # Minimize downtime during a rolling upgrade or deletion; tell Kubernetes to do a "force
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:29 UTC 2024
    - 7.9K bytes
    - Viewed (0)
Back to top