Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 1,369 for Pods (0.04 sec)

  1. pkg/controller/deployment/recreate_test.go

    			hasOldPodsRunning: false,
    		},
    		{
    			name:              "old RSs with running pods",
    			oldRSs:            []*apps.ReplicaSet{rsWithUID("some-uid"), rsWithUID("other-uid")},
    			podMap:            podMapWithUIDs([]string{"some-uid", "other-uid"}),
    			hasOldPodsRunning: true,
    		},
    		{
    			name:              "old RSs without pods but with non-zero status replicas",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 08 09:10:50 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/runtime/mapper_test.go

    	}
    
    	kindsToRegister := []struct {
    		gvr         schema.GroupVersionResource
    		subresource string
    		gvk         schema.GroupVersionKind
    	}{
    		// pods
    		{gvr("", "v1", "pods"), "", gvk("", "v1", "Pod")},
    		// pods/status
    		{gvr("", "v1", "pods"), "status", gvk("", "v1", "Pod")},
    		// deployments
    		{gvr("apps", "v1", "deployments"), "", gvk("apps", "v1", "Deployment")},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:48:03 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  3. pkg/kubelet/pod/mirror_client.go

    type nodeGetter interface {
    	// Get retrieves the Node for a given name.
    	Get(name string) (*v1.Node, error)
    }
    
    // basicMirrorClient is a functional MirrorClient.  Mirror pods are stored in
    // the kubelet directly because they need to be in sync with the internal
    // pods.
    type basicMirrorClient struct {
    	apiserverClient clientset.Interface
    	nodeGetter      nodeGetter
    	nodeName        string
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 21 11:38:40 UTC 2021
    - 5.5K bytes
    - Viewed (0)
  4. pkg/controller/deployment/rolling.go

    	//
    	// maxScaledDown := allPodsCount - minAvailable - newReplicaSetPodsUnavailable
    	// take into account not only maxUnavailable and any surge pods that have been created, but also unavailable pods from
    	// the newRS, so that the unavailable pods from the newRS would not make us scale down old replica sets in a further
    	// step(that will increase unavailability).
    	//
    	// Concrete example:
    	//
    	// * 10 replicas
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 07:09:11 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/util/etcd/etcd_test.go

    	tests := []struct {
    		name              string
    		pods              []testresources.FakeStaticPod
    		clientSetup       func(*clientsetfake.Clientset)
    		expectedEndpoints []string
    		expectedErr       bool
    	}{
    		{
    			name:              "no pods",
    			expectedEndpoints: []string{},
    		},
    		{
    			name: "exactly one pod with annotation",
    			pods: []testresources.FakeStaticPod{
    				{
    					NodeName:    "cp-0",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 13:07:56 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  6. cni/pkg/repair/repair_test.go

    		})
    	}
    }
    
    func fakeClient(pods ...*corev1.Pod) kube.Client {
    	var csPods []runtime.Object
    
    	for _, pod := range pods {
    		csPods = append(csPods, pod.DeepCopy())
    	}
    	return kube.NewFakeClient(csPods...)
    }
    
    func makePodLabelMap(pods []*corev1.Pod) (podmap map[string]string) {
    	podmap = map[string]string{}
    	for _, pod := range pods {
    		podmap[pod.Name] = ""
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 24 03:31:28 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/ingress/status.go

    			c.enqueueAll()
    		}
    	}))
    	// For pods, we enqueue all Ingress if its part of the ingress service
    	c.pods.AddEventHandler(controllers.ObjectHandler(func(o controllers.Object) {
    		if c.meshConfig.Mesh().IngressService != "" {
    			// Ingress Service takes precedence
    			return
    		}
    		ingressSelector := c.meshConfig.Mesh().IngressSelector
    
    		// get all pods acting as ingress gateways
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  8. pkg/auth/authorizer/abac/abac_test.go

    		ExpectDecision authorizer.Decision
    	}{
    		// Scheduler can read pods
    		{User: uScheduler, Verb: "list", Resource: "pods", NS: "ns1", ExpectDecision: authorizer.DecisionAllow},
    		{User: uScheduler, Verb: "list", Resource: "pods", NS: "", ExpectDecision: authorizer.DecisionAllow},
    		// Scheduler cannot write pods
    		{User: uScheduler, Verb: "create", Resource: "pods", NS: "ns1", ExpectDecision: authorizer.DecisionNoOpinion},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 24 15:14:54 UTC 2019
    - 40K bytes
    - Viewed (0)
  9. manifests/charts/istio-cni/values.yaml

        resourceQuotas:
          enabled: false
          pods: 5000
    
        # 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)
  10. istioctl/pkg/checkinject/testdata/check-inject/default-injector.yaml

                - "false"
        reinvocationPolicy: Never
        rules:
          - apiGroups:
              - ""
            apiVersions:
              - v1
            operations:
              - CREATE
            resources:
              - pods
            scope: '*'
        sideEffects: None
        timeoutSeconds: 10
      - admissionReviewVersions:
          - v1beta1
          - v1
        clientConfig:
          service:
            name: istiod
            namespace: istio-system
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 3.9K bytes
    - Viewed (0)
Back to top