Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 279 for Pods (0.14 sec)

  1. pkg/controller/statefulset/stateful_set_utils.go

    		return false
    	}
    	for _, ownerRef := range claim.GetOwnerReferences() {
    		if matchesRef(&ownerRef, set, controllerKind) {
    			if ownerRef.UID != set.GetUID() {
    				// A UID mismatch means that pods were incorrectly orphaned. Treating this as an unexpected
    				// controller means we won't touch the PVCs (eg, leave it to the garbage collector to clean
    				// up if appropriate).
    				return true
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  2. cmd/kube-scheduler/app/server.go

    func NewSchedulerCommand(registryOptions ...Option) *cobra.Command {
    	opts := options.NewOptions()
    
    	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
    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. pkg/test/framework/components/echo/echotest/filters_test.go

    		filter func(echo.Instances) echo.Instances
    		expect echo.Instances
    	}{
    		"SimplePodServiceAndAllSpecial": {
    			filter: echotest.SingleSimplePodServiceAndAllSpecial(),
    			expect: echo.Instances{
    				// Keep pods for one regular service per namespace.
    				a1, a2, a1Ns2, a2Ns2,
    				// keep the special cases
    				vm1, vm2,
    				headless1, headless2,
    				naked1, naked2,
    				external1, external2,
    			},
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  4. pkg/kubelet/util/manager/watch_based_manager.go

    	}
    }
    
    // NewWatchBasedManager creates a manager that keeps a cache of all objects
    // necessary for registered pods.
    // It implements the following logic:
    //   - whenever a pod is created or updated, we start individual watches for all
    //     referenced objects that aren't referenced from other registered pods
    //   - every GetObject() returns a value from local cache propagated via watches
    func NewWatchBasedManager(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  5. pkg/kubelet/volumemanager/reconciler/reconciler_common.go

    //
    // actualStateOfWorld - cache containing the actual state of the world
    //
    // populatorHasAddedPods - checker for whether the populator has finished
    // adding pods to the desiredStateOfWorld cache at least once after sources
    // are all ready (before sources are ready, pods are probably missing)
    //
    // operationExecutor - used to trigger attach/detach/mount/unmount operations
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:23:12 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  6. pilot/pkg/features/pilot.go

    	EnableServiceEntrySelectPods = env.Register("PILOT_ENABLE_SERVICEENTRY_SELECT_PODS", true,
    		"If enabled, service entries with selectors will select pods from the cluster. "+
    			"It is safe to disable it if you are quite sure you don't need this feature").Get()
    
    	EnableK8SServiceSelectWorkloadEntries = env.RegisterBoolVar("PILOT_ENABLE_K8S_SELECT_WORKLOAD_ENTRIES", true,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/cmd/phases/init/waitcontrolplane.go

    	if err != nil {
    		return errors.Wrap(err, "error creating waiter")
    	}
    
    	fmt.Printf("[wait-control-plane] Waiting for the kubelet to boot up the control plane as static Pods"+
    		" from directory %q\n",
    		data.ManifestDir())
    
    	handleError := func(err error) error {
    		context := struct {
    			Error  string
    			Socket string
    		}{
    			Error:  fmt.Sprintf("%v", err),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 5K bytes
    - Viewed (0)
  8. api/openapi-spec/swagger.json

            },
            "resources": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
  9. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    	Enabled *wrapperspb.BoolValue `protobuf:"bytes,1,opt,name=enabled,proto3" json:"enabled,omitempty"`
    	// The hard limit on the number of pods in the namespace where the CNI DaemonSet is deployed.
    	Pods int64 `protobuf:"varint,2,opt,name=pods,proto3" json:"pods,omitempty"`
    }
    
    func (x *ResourceQuotas) Reset() {
    	*x = ResourceQuotas{}
    	if protoimpl.UnsafeEnabled {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
  10. pkg/volume/local/local.go

    	return false, nil
    }
    
    func (plugin *localVolumePlugin) GetAccessModes() []v1.PersistentVolumeAccessMode {
    	// The current meaning of AccessMode is how many nodes can attach to it, not how many pods can mount it
    	return []v1.PersistentVolumeAccessMode{
    		v1.ReadWriteOnce,
    	}
    }
    
    func getVolumeSource(spec *volume.Spec) (*v1.LocalVolumeSource, bool, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 22.2K bytes
    - Viewed (0)
Back to top