Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 561 for Pods (0.13 sec)

  1. tests/integration/pilot/cni/cniversionskew_test.go

    				retry.UntilSuccessOrFail(t, func() error {
    					pods, err := podFetchFn()
    					if err != nil {
    						return fmt.Errorf("failed to get CNI pods %v", err)
    					}
    					if len(pods) == 0 {
    						return fmt.Errorf("cannot find any CNI pods")
    					}
    					for _, p := range pods {
    						if !strings.Contains(p.Spec.Containers[0].Image, v) {
    							return fmt.Errorf("pods image does not match wanted CNI version")
    						}
    					}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 22:56:37 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/runtime/waiting_pods_map.go

    )
    
    // waitingPodsMap a thread-safe map used to maintain pods waiting in the permit phase.
    type waitingPodsMap struct {
    	pods map[types.UID]*waitingPod
    	mu   sync.RWMutex
    }
    
    // NewWaitingPodsMap returns a new waitingPodsMap.
    func NewWaitingPodsMap() *waitingPodsMap {
    	return &waitingPodsMap{
    		pods: make(map[types.UID]*waitingPod),
    	}
    }
    
    // add a new WaitingPod to the map.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  3. security/pkg/server/ca/node_auth.go

    			},
    			Node: pod.Spec.NodeName,
    		}}
    	})
    	return &ClusterNodeAuthorizer{
    		pods:                pods,
    		nodeIndex:           index,
    		trustedNodeAccounts: trustedNodeAccounts,
    	}
    }
    
    func (na *ClusterNodeAuthorizer) Close() {
    	na.pods.ShutdownHandlers()
    }
    
    func (na *ClusterNodeAuthorizer) HasSynced() bool {
    	return na.pods.HasSynced()
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  4. pkg/controller/podgc/doc.go

    // PodGCController, that runs in the controller manager. If the number of pods
    // in terminated phases (right now either Failed or Succeeded) surpasses a
    // configurable threshold, the controller will delete pods in terminated state
    // until the system reaches the allowed threshold again. The PodGCController
    // prioritizes pods to delete by sorting by creation timestamp and deleting the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jul 16 17:48:21 UTC 2016
    - 1.2K bytes
    - Viewed (0)
  5. 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)
  6. releasenotes/notes/injector-selectors.yaml

        new Kubernetes features. Previously, the webhook was triggered at a coarse grain level, selecting any
        pods in a namespace with a matching `istio-injection=enabled` label.
    
        This has two limitations:
    
        * Opting out individual pods with the `sidecar.istio.io/inject` label would still trigger the webhook,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 01 15:34:22 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/client-go/applyconfigurations/autoscaling/v2beta2/metricspec.go

    	return b
    }
    
    // WithPods sets the Pods field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the Pods field is set to the value of the last call.
    func (b *MetricSpecApplyConfiguration) WithPods(value *PodsMetricSourceApplyConfiguration) *MetricSpecApplyConfiguration {
    	b.Pods = value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 4.2K bytes
    - Viewed (0)
  8. 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)
  9. pkg/scheduler/testing/workload_prep.go

    	k string
    	v string
    }
    
    // MakeNodesAndPodsForEvenPodsSpread serves as a testing helper for EvenPodsSpread feature.
    // It builds a fake cluster containing running Pods and Nodes.
    // The size of Pods and Nodes are determined by input arguments.
    // The specs of Pods and Nodes are generated with the following rules:
    //   - Each generated node is applied with a unique label: "node: node<i>".
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 16 13:43:36 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  10. 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)
Back to top