Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 249 for daemonset1 (0.4 sec)

  1. manifests/charts/istio-cni/values.yaml

          # Note this gives the DaemonSet a relatively high privilege, as modifying pod metadata/status can have wider impacts.
          labelPods: false
          # deletePods will delete any broken pod. These will then be rescheduled, hopefully onto a node that is fully ready.
          # Note this gives the DaemonSet a relatively high privilege, as it can delete any Pod.
          deletePods: false
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 5.2K bytes
    - Viewed (1)
  2. pkg/apis/apps/v1/defaults_test.go

    		},
    	}
    	tests := []struct {
    		original *appsv1.DaemonSet
    		expected *appsv1.DaemonSet
    	}{
    		{ // Labels change/defaulting test.
    			original: &appsv1.DaemonSet{
    				Spec: appsv1.DaemonSetSpec{
    					Template: defaultTemplate,
    				},
    			},
    			expected: &appsv1.DaemonSet{
    				ObjectMeta: metav1.ObjectMeta{
    					Labels: defaultLabels,
    				},
    				Spec: appsv1.DaemonSetSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  3. operator/pkg/verifier/verifier.go

    			crdCount += generatedCrds
    			istioDeploymentCount += generatedDeployments
    			daemonSetCount += generatedDaemonSets
    			if err != nil {
    				return err
    			}
    		case "DaemonSet":
    			ds := &appsv1.DaemonSet{}
    			err = info.Client.
    				Get().
    				Resource(kinds).
    				Namespace(namespace).
    				Name(name).
    				VersionedParams(&metav1.GetOptions{}, scheme.ParameterCodec).
    				Do(context.TODO()).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 19:23:44 UTC 2024
    - 15K bytes
    - Viewed (0)
  4. cluster/addons/README.md

    The suggested naming for most of the resources is `<basename>` (with no version number).
    Though resources like `Pod`, `ReplicationController` and `DaemonSet` are exceptional.
    It would be hard to update `Pod` because many fields in `Pod` are immutable. For
    `ReplicationController` and `DaemonSet`, in-place update may not trigger the underlying
    pods to be re-created. You probably need to change their names during update to trigger
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 13 20:03:37 UTC 2020
    - 1.6K bytes
    - Viewed (0)
  5. cluster/addons/calico-policy-controller/calico-clusterrole.yaml

        resources:
          - blockaffinities
        verbs:
          - watch
      # The Calico IPAM migration needs to get daemonsets. These permissions can be
      # removed if not upgrading from an installation using host-local IPAM.
      - apiGroups: ["apps"]
        resources:
          - daemonsets
        verbs:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 26 02:52:06 UTC 2020
    - 3.3K bytes
    - Viewed (0)
  6. cluster/gce/config-test.sh

    # Optional: Install node problem detector.
    #   none           - Not run node problem detector.
    #   daemonset      - Run node problem detector as daemonset.
    #   standalone     - Run node problem detector as standalone system daemon.
    export ENABLE_NODE_PROBLEM_DETECTOR=${KUBE_ENABLE_NODE_PROBLEM_DETECTOR:-daemonset}
    NODE_PROBLEM_DETECTOR_VERSION=${NODE_PROBLEM_DETECTOR_VERSION:-}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 17:20:24 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  7. pkg/apis/apps/v1/conversion.go

    	} else {
    		delete(out.Annotations, appsv1.DeprecatedRollbackTo)
    	}
    
    	return nil
    }
    
    func Convert_apps_DaemonSet_To_v1_DaemonSet(in *apps.DaemonSet, out *appsv1.DaemonSet, s conversion.Scope) error {
    	if err := autoConvert_apps_DaemonSet_To_v1_DaemonSet(in, out, s); err != nil {
    		return err
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 23 23:36:24 UTC 2022
    - 6.2K bytes
    - Viewed (0)
  8. cluster/addons/calico-policy-controller/calico-cpva-clusterrole.yaml

    metadata:
      name: calico-cpva
      labels:
        addonmanager.kubernetes.io/mode: Reconcile
    rules:
      - apiGroups: [""]
        resources: ["nodes"]
        verbs: ["list"]
      - apiGroups: ["apps"]
        resources: ["deployments", "daemonsets"]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 13 17:23:39 UTC 2019
    - 308 bytes
    - Viewed (0)
  9. cluster/gce/config-default.sh

    # Optional: Install node problem detector.
    #   none           - Not run node problem detector.
    #   daemonset      - Run node problem detector as daemonset.
    #   standalone     - Run node problem detector as standalone system daemon.
    export ENABLE_NODE_PROBLEM_DETECTOR="${KUBE_ENABLE_NODE_PROBLEM_DETECTOR:-daemonset}"
    NODE_PROBLEM_DETECTOR_VERSION="${NODE_PROBLEM_DETECTOR_VERSION:-}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 20:16:32 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  10. tests/fuzz/testdata/inject/fuzz_into_resource_file.dict

    "policy"
    "defaultTemplates"
    "aliases"
    "neverInjectSelector"
    "alwaysInjectSelector"
    "injectedAnnotations"
    "kind: CronJob"
    "kind: DaemonSet"
    "kind: Deployment"
    "kind: DeploymentConfig"
    "kind: IstioOperator"
    "kind: List"
    "kind: Service"
    "apiVersion: apps/v1"
    "apiVersion: apps.openshift.io/v1"
    "apiVersion: batch/v2alpha1"
    "apiVersion: install.istio.io/v1alpha1"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 09 17:12:53 UTC 2021
    - 377 bytes
    - Viewed (0)
Back to top