Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for DaemonSetSpec (0.54 sec)

  1. staging/src/k8s.io/client-go/applyconfigurations/apps/v1beta2/daemonsetspec.go

    	RevisionHistoryLimit *int32                                     `json:"revisionHistoryLimit,omitempty"`
    }
    
    // DaemonSetSpecApplyConfiguration constructs an declarative configuration of the DaemonSetSpec type for use with
    // apply.
    func DaemonSetSpec() *DaemonSetSpecApplyConfiguration {
    	return &DaemonSetSpecApplyConfiguration{}
    }
    
    // WithSelector sets the Selector field in the declarative configuration to the given value
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 3.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/client-go/applyconfigurations/apps/v1/daemonsetspec.go

    	RevisionHistoryLimit *int32                                     `json:"revisionHistoryLimit,omitempty"`
    }
    
    // DaemonSetSpecApplyConfiguration constructs an declarative configuration of the DaemonSetSpec type for use with
    // apply.
    func DaemonSetSpec() *DaemonSetSpecApplyConfiguration {
    	return &DaemonSetSpecApplyConfiguration{}
    }
    
    // WithSelector sets the Selector field in the declarative configuration to the given value
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 3.8K bytes
    - Viewed (0)
  3. pkg/registry/apps/daemonset/storage/storage_test.go

    	test.TestCreate(
    		// valid
    		ds,
    		// invalid (invalid selector)
    		&apps.DaemonSet{
    			Spec: apps.DaemonSetSpec{
    				Selector: &metav1.LabelSelector{MatchLabels: map[string]string{}},
    				Template: validDaemonSet.Spec.Template,
    			},
    		},
    		// invalid update strategy
    		&apps.DaemonSet{
    			Spec: apps.DaemonSetSpec{
    				Selector: validDaemonSet.Spec.Selector,
    				Template: validDaemonSet.Spec.Template,
    			},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 12 20:55:35 UTC 2019
    - 5.3K bytes
    - Viewed (0)
  4. pkg/apis/apps/v1/conversion.go

    }
    
    // Convert_apps_DaemonSetSpec_To_v1_DaemonSetSpec is defined here, because public
    // conversion is not auto-generated due to existing warnings.
    func Convert_apps_DaemonSetSpec_To_v1_DaemonSetSpec(in *apps.DaemonSetSpec, out *appsv1.DaemonSetSpec, s conversion.Scope) error {
    	if err := autoConvert_apps_DaemonSetSpec_To_v1_DaemonSetSpec(in, out, s); err != nil {
    		return err
    	}
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 23 23:36:24 UTC 2022
    - 6.2K bytes
    - Viewed (0)
  5. pkg/apis/apps/v1beta2/conversion.go

    // Convert_apps_DaemonSetSpec_To_v1beta2_DaemonSetSpec is defined here, because public
    // conversion is not auto-generated due to existing warnings.
    func Convert_apps_DaemonSetSpec_To_v1beta2_DaemonSetSpec(in *apps.DaemonSetSpec, out *appsv1beta2.DaemonSetSpec, s conversion.Scope) error {
    	if err := autoConvert_apps_DaemonSetSpec_To_v1beta2_DaemonSetSpec(in, out, s); err != nil {
    		return err
    	}
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 23 23:36:24 UTC 2022
    - 8.3K bytes
    - Viewed (0)
  6. pkg/registry/apps/daemonset/strategy_test.go

    	return &apps.DaemonSet{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:            daemonsetName,
    			Namespace:       namespace,
    			ResourceVersion: "1",
    		},
    		Spec: apps.DaemonSetSpec{
    			Selector: &metav1.LabelSelector{
    				MatchLabels:      selectorLabels,
    				MatchExpressions: []metav1.LabelSelectorRequirement{},
    			},
    			UpdateStrategy: apps.DaemonSetUpdateStrategy{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 01:52:02 UTC 2022
    - 4.7K bytes
    - Viewed (0)
  7. pkg/apis/apps/fuzzer/fuzzer.go

    			c.FuzzNoCustom(j)
    
    			// match defaulter
    			j.Spec.Template.Generation = 0
    			if len(j.ObjectMeta.Labels) == 0 {
    				j.ObjectMeta.Labels = j.Spec.Template.ObjectMeta.Labels
    			}
    		},
    		func(j *apps.DaemonSetSpec, c fuzz.Continue) {
    			c.FuzzNoCustom(j) // fuzz self without calling this function again
    			rhl := int32(c.Rand.Int31())
    			j.RevisionHistoryLimit = &rhl
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 07:16:15 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  8. manifests/charts/istio-cni/values.yaml

        # The number of pods that can be unavailable during rolling update (see
        # `updateStrategy.rollingUpdate.maxUnavailable` here:
        # https://kubernetes.io/docs/reference/kubernetes-api/workload-resources/daemon-set-v1/#DaemonSetSpec).
        # May be specified as a number of pods or as a percent of the total number
        # of pods at the start of the update.
        rollingMaxUnavailable: 1
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/phases/addons/proxy/proxy_test.go

    		},
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      "kube-proxy",
    			Namespace: metav1.NamespaceSystem,
    			Labels: map[string]string{
    				"k8s-app": "kube-proxy",
    			},
    		},
    		Spec: apps.DaemonSetSpec{
    			Template: v1.PodTemplateSpec{},
    		},
    	}, metav1.CreateOptions{})
    	if err != nil {
    		t.Fatalf("error creating Daemonset: %v", err)
    	}
    
    	return client
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Feb 18 11:14:32 UTC 2024
    - 8.7K bytes
    - Viewed (0)
Back to top