Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 232 for podB (0.06 sec)

  1. hack/testdata/pod-with-metadata-and-probes.yaml

    apiVersion: v1
    kind: Pod
    metadata:
      annotations:
        test: test
      labels:
        run: target
      name: target
    spec:
      containers:
      - image: registry.k8s.io/nginx:1.7.9
        name: target
        readinessProbe:
          exec:
            command: ["/bin/sh", "-c", "cat probe"]
        livenessProbe:
          exec:
            command: ["/bin/sh", "-c", "cat probe"]
        startupProbe:
          exec:
            command: ["/bin/sh", "-c", "cat probe"]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 17:26:20 UTC 2024
    - 471 bytes
    - Viewed (0)
  2. cmd/kube-scheduler/app/server.go

    	cmd := &cobra.Command{
    		Use: "kube-scheduler",
    		Long: `The Kubernetes scheduler is a control plane process which assigns
    Pods to Nodes. The scheduler determines which Nodes are valid placements for
    each Pod in the scheduling queue according to constraints and available
    resources. The scheduler then ranks each valid Node and binds the Pod to a
    suitable Node. Multiple different schedulers may be used within a cluster;
    kube-scheduler is the reference implementation.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 19:11:24 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  3. cluster/gce/upgrade-aliases.sh

        --format='value(secondaryIpRanges)')
      if [[ "${secondary_ranges}" =~ "pods-default" && "${secondary_ranges}" =~ "services-default" ]]; then
        echo "${secondary_ranges} already contains both pods-default and services-default secondary ranges"
        return
      fi
    
      echo "Adding secondary ranges: pods-default (${CLUSTER_IP_RANGE}), services-default (${SERVICE_CLUSTER_IP_RANGE})"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/networking/v1/types.go

    	// Traffic is allowed to a pod if there are no NetworkPolicies selecting the pod
    	// (and cluster policy otherwise allows the traffic), OR if the traffic source is
    	// the pod's local node, OR if the traffic matches at least one ingress rule
    	// across all of the NetworkPolicy objects whose podSelector matches the pod. If
    	// this field is empty then this NetworkPolicy does not allow any traffic (and serves
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  5. cni/pkg/constants/constants.go

    	// Repair
    	RepairEnabled            = "repair-enabled"
    	RepairDeletePods         = "repair-delete-pods"
    	RepairRepairPods         = "repair-repair-pods"
    	RepairLabelPods          = "repair-label-pods"
    	RepairLabelKey           = "repair-broken-pod-label-key"
    	RepairLabelValue         = "repair-broken-pod-label-value"
    	RepairNodeName           = "repair-node-name"
    	RepairSidecarAnnotation  = "repair-sidecar-annotation"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  6. operator/pkg/apis/istio/v1alpha1/values_types.proto

      // The mode defines the action the controller will take when a pod is detected as broken.
      // If deletePods is true, the controller will delete the broken pod. The pod will then be rescheduled, hopefully onto a node that is fully ready.
      // Note this gives the DaemonSet a relatively high privilege, as it can delete any Pod.
      bool deletePods = 7;
    
      // The label key to apply to a broken pod when the controller is in labelPods mode.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/preemption/preemption_test.go

    	tests := []struct {
    		name      string
    		nodeNames []string
    		pod       *v1.Pod
    		testPods  []*v1.Pod
    		expected  string
    	}{
    		{
    			name:      "pod has different number of containers on each node",
    			nodeNames: []string{"node1", "node2", "node3"},
    			pod:       st.MakePod().Name("p").UID("p").Priority(highPriority).Req(veryLargeRes).Obj(),
    			testPods: []*v1.Pod{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/cmd/upgrade/apply.go

    func PerformControlPlaneUpgrade(flags *applyFlags, client clientset.Interface, waiter apiclient.Waiter, initCfg *kubeadmapi.InitConfiguration, upgradeCfg *kubeadmapi.UpgradeConfiguration) error {
    	// OK, the cluster is hosted using static pods. Upgrade a static-pod hosted cluster
    	fmt.Printf("[upgrade/apply] Upgrading your Static Pod-hosted control plane to version %q (timeout: %v)...\n",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 03:55:23 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  9. pkg/scheduler/scheduler.go

    	// See issue #106361 for more details about this parameter and its value.
    	durationToExpireAssumedPod time.Duration = 0
    )
    
    // ErrNoNodesAvailable is used to describe the error that no nodes available to schedule pods.
    var ErrNoNodesAvailable = fmt.Errorf("no nodes available to schedule pods")
    
    // Scheduler watches for new unscheduled pods. It attempts to find
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/cacher/cache_watcher_test.go

    		w.stopLocked()
    	}
    	initEvents := []*watchCacheEvent{
    		{Object: &v1.Pod{}},
    		{Object: &v1.Pod{}},
    	}
    	// set the size of the buffer of w.result to 0, so that the writes to
    	// w.result is blocked.
    	w = newCacheWatcher(0, filter, forget, storage.APIObjectVersioner{}, time.Now(), false, schema.GroupResource{Resource: "pods"}, "")
    	go w.processInterval(context.Background(), intervalFromEvents(initEvents), 0)
    	w.Stop()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 09:20:10 UTC 2024
    - 22.9K bytes
    - Viewed (0)
Back to top