Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 561 for Pods (0.26 sec)

  1. pkg/apis/node/types.go

    	// RuntimeClass. Pods using this RuntimeClass can only be scheduled to a
    	// node matched by this selector. The RuntimeClass nodeSelector is merged
    	// with a pod's existing nodeSelector. Any conflicts will cause the pod to
    	// be rejected in admission.
    	// +optional
    	NodeSelector map[string]string
    
    	// tolerations are appended (excluding duplicates) to pods running with this
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 22 08:59:25 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  2. tools/bug-report/pkg/config/config_test.go

    				Deployments: []string{"d1", "d2"},
    				Pods:        []string{"p1", "p2"},
    				Containers:  []string{"c1", "c2"},
    				Labels: map[string]string{
    					"l1": "lv1",
    					"l2": "lv2",
    				},
    				Annotations: map[string]string{
    					"a1": "av1",
    					"a2": "av2",
    				},
    			},
    			{
    				Namespaces:  []string{"ns4", "ns5"},
    				Deployments: []string{"d4", "d5"},
    				Pods:        []string{"p4", "p5"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 15 15:19:50 UTC 2021
    - 4.4K bytes
    - Viewed (0)
  3. istioctl/pkg/checkinject/testdata/check-inject/rev-16-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-1-16
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 15 15:02:17 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  4. operator/cmd/mesh/testdata/manifest-generate/input-extra-resources/duplicate_mwc.yaml

          operator: NotIn
          values:
          - canary
      reinvocationPolicy: Never
      rules:
      - apiGroups:
        - ""
        apiVersions:
        - v1
        operations:
        - CREATE
        resources:
        - pods
        scope: '*'
      sideEffects: None
      timeoutSeconds: 10
    ---
    # same webhook but with different name, will result in a duplicate
    apiVersion: admissionregistration.k8s.io/v1
    kind: MutatingWebhookConfiguration
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 22 08:32:23 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  5. pkg/controller/podgc/config/types.go

    // PodGCControllerConfiguration contains elements describing PodGCController.
    type PodGCControllerConfiguration struct {
    	// terminatedPodGCThreshold is the number of terminated pods that can exist
    	// before the terminated pod garbage collector starts deleting terminated pods.
    	// If <= 0, the terminated pod garbage collector is disabled.
    	TerminatedPodGCThreshold int32
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 04:54:33 UTC 2019
    - 963 bytes
    - Viewed (0)
  6. cmd/kubeadm/app/util/runtime/runtime.go

    	return nil
    }
    
    // ListKubeContainers lists running k8s CRI pods
    func (runtime *CRIRuntime) ListKubeContainers() ([]string, error) {
    	ctx, cancel := defaultContext()
    	defer cancel()
    
    	sandboxes, err := runtime.impl.ListPodSandbox(ctx, runtime.runtimeService, nil)
    	if err != nil {
    		return nil, errors.Wrap(err, "failed to list pod sandboxes")
    	}
    
    	pods := []string{}
    	for _, sandbox := range sandboxes {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 06:33:22 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/scheduling/v1beta1/types_swagger_doc_generated.go

    	"value":            "value represents the integer value of this priority class. This is the actual priority that pods receive when they have the name of this class in their pod spec.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/node/v1beta1/types_swagger_doc_generated.go

    	"tolerations":  "tolerations are appended (excluding duplicates) to pods running with this RuntimeClass during admission, effectively unioning the set of nodes tolerated by...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  9. pkg/test/framework/components/istio/eastwest.go

    	if err := retry.UntilSuccess(func() error {
    		pods, err := cluster.Kube().CoreV1().Pods(i.cfg.SystemNamespace).List(context.TODO(), metav1.ListOptions{
    			LabelSelector: eastWestIngressIstioLabel,
    		})
    		if err != nil {
    			return err
    		}
    		for _, p := range pods.Items {
    			if p.Status.Phase == corev1.PodRunning {
    				return nil
    			}
    		}
    		return fmt.Errorf("no ready pods for " + eastWestIngressIstioLabel)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 10 02:30:20 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  10. pkg/scheduler/internal/cache/debugger/comparer_test.go

    		})
    	}
    }
    
    func testComparePods(actual, cached, queued, missing, redundant []string, t *testing.T) {
    	compare := CacheComparer{}
    	pods := []*v1.Pod{}
    	for _, uid := range actual {
    		pod := &v1.Pod{}
    		pod.UID = types.UID(uid)
    		pods = append(pods, pod)
    	}
    
    	queuedPods := []*v1.Pod{}
    	for _, uid := range queued {
    		pod := &v1.Pod{}
    		pod.UID = types.UID(uid)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 05 08:00:25 UTC 2023
    - 4.8K bytes
    - Viewed (0)
Back to top