Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 64 for podB (0.03 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/selection_predicate.go

    		if value, ok := s.Field.RequiresExactMatch(field); ok {
    			result = append(result, MatchValue{IndexName: FieldIndex(field), Value: value})
    		} else if field == "metadata.namespace" {
    			// list pods in the namespace. i.e. /api/v1/namespaces/default/pods
    			if namespace, isNamespaceScope := isNamespaceScopedRequest(ctx); isNamespaceScope {
    				result = append(result, MatchValue{IndexName: FieldIndex(field), Value: namespace})
    			}
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 09:20:10 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  2. manifests/charts/istio-cni/templates/daemonset.yaml

          # Minimize downtime during a rolling upgrade or deletion; tell Kubernetes to do a "force
          # deletion": https://kubernetes.io/docs/concepts/workloads/pods/pod/#termination-of-pods.
          terminationGracePeriodSeconds: 5
          containers:
            # This container installs the Istio CNI binaries
            # and CNI network config file on each node.
            - name: install-cni
    {{- if contains "/" .Values.cni.image }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:29 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  3. pkg/kubelet/pod/testing/fake_mirror_client.go

    	m.createCounts = make(map[string]int)
    	m.deleteCounts = make(map[string]int)
    	return &m
    }
    
    func (fmc *FakeMirrorClient) CreateMirrorPod(pod *v1.Pod) error {
    	fmc.mirrorPodLock.Lock()
    	defer fmc.mirrorPodLock.Unlock()
    	podFullName := kubecontainer.GetPodFullName(pod)
    	fmc.mirrorPods.Insert(podFullName)
    	fmc.createCounts[podFullName]++
    	return nil
    }
    
    // TODO (Robert Krawitz): Implement UID checking
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  4. pkg/config/analysis/analyzers/testdata/gateway-custom-ingressgateway-badport-notarget.yaml

    spec:
      selector:
        myapp: private-ingressgateway
      servers:
      - port:
          number: 8004
          name: http2
          protocol: HTTP
        hosts:
        - "*"
    ---
    apiVersion: v1
    kind: Pod
    metadata:
      labels:
        myapp: private-ingressgateway
      name: my-ingressgateway-1234
    spec:
      containers:
        - args:
          name: istio-proxy
    ---
    apiVersion: v1
    kind: Service
    metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 08:48:06 UTC 2024
    - 653 bytes
    - Viewed (0)
  5. pkg/controlplane/storageversionhashdata/data.go

    	"v1/namespaces":             "Q3oi5N2YM8M=",
    	"v1/nodes":                  "XwShjMxG9Fs=",
    	"v1/persistentvolumeclaims": "QWTyNDq0dC4=",
    	"v1/persistentvolumes":      "HN/zwEC+JgM=",
    	"v1/pods":                   "xPOwRZ+Yhw8=",
    	"v1/podtemplates":           "LIXB2x4IFpk=",
    	"v1/replicationcontrollers": "Jond2If31h0=",
    	"v1/resourcequotas":         "8uhSgffRX6w=",
    	"v1/secrets":                "S6u1pOWzb84=",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 20:14:51 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/storagebackend/factory/tls_test.go

    		},
    		Codec: codec,
    	}
    	storage, destroyFunc, err := newETCD3Storage(*cfg.ForResource(schema.GroupResource{Resource: "pods"}), nil, nil, "")
    	defer destroyFunc()
    	if err != nil {
    		t.Fatal(err)
    	}
    	err = storage.Create(context.TODO(), "/abc", &example.Pod{}, nil, 0)
    	if err != nil {
    		t.Fatalf("Create failed: %v", err)
    	}
    }
    
    func configureTLSCerts(t *testing.T) (certFile, keyFile, caFile string) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  7. cmd/kube-controller-manager/app/options/hpacontroller.go

    	fs.DurationVar(&o.HorizontalPodAutoscalerDownscaleStabilizationWindow.Duration, "horizontal-pod-autoscaler-downscale-stabilization", o.HorizontalPodAutoscalerDownscaleStabilizationWindow.Duration, "The period for which autoscaler will look backwards and not scale down below any recommendation it made during that period.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 19 09:49:23 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/schedulinggates/scheduling_gates.go

    	}, nil
    }
    
    func (pl *SchedulingGates) isSchedulableAfterPodChange(logger klog.Logger, pod *v1.Pod, oldObj, newObj interface{}) (framework.QueueingHint, error) {
    	_, modifiedPod, err := util.As[*v1.Pod](oldObj, newObj)
    	if err != nil {
    		return framework.Queue, err
    	}
    
    	if modifiedPod.UID != pod.UID {
    		// If the update event is not for targetPod, it wouldn't make targetPod schedulable.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  9. manifests/charts/ztunnel/values.yaml

      image: ztunnel
    
      # Labels to apply to all top level resources
      labels: {}
      # Annotations to apply to all top level resources
      annotations: {}
    
      # Additional volumeMounts to the ztunnel container
      volumeMounts: []
    
      # Additional volumes to the ztunnel pod
      volumes: []
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 20:32:30 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  10. go.work

    	./staging/src/k8s.io/kube-proxy
    	./staging/src/k8s.io/kube-scheduler
    	./staging/src/k8s.io/kubectl
    	./staging/src/k8s.io/kubelet
    	./staging/src/k8s.io/metrics
    	./staging/src/k8s.io/mount-utils
    	./staging/src/k8s.io/pod-security-admission
    	./staging/src/k8s.io/sample-apiserver
    	./staging/src/k8s.io/sample-cli-plugin
    	./staging/src/k8s.io/sample-controller
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 1.1K bytes
    - Viewed (0)
Back to top