Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 321 for managed (1.24 sec)

  1. pkg/kubelet/nodestatus/setters.go

    				// Set the capacity of the removed resource to 0 instead of
    				// removing the resource from the node status. This is to indicate
    				// that the resource is managed by device plugin and had been
    				// registered before.
    				//
    				// This is required to differentiate the device plugin managed
    				// resources and the cluster-level resources, which are absent in
    				// node status.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 12:12:04 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/conversion_test.go

    		r               GatewayResources
    		kgw             *k8s.GatewaySpec
    		obj             config.Config
    		gatewayServices []string
    		err             *ConfigError
    	}{
    		{
    			name: "managed gateway",
    			r:    GatewayResources{Domain: "cluster.local"},
    			kgw: &k8s.GatewaySpec{
    				GatewayClassName: "istio",
    			},
    			obj: config.Config{
    				Meta: config.Meta{
    					Name:      "foo",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 20:24:52 UTC 2024
    - 34.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/rbac/v1/types.go

    	// AggregationRule is an optional field that describes how to build the Rules for this ClusterRole.
    	// If AggregationRule is set, then the Rules are controller managed and direct changes to Rules will be
    	// stomped by the controller.
    	// +optional
    	AggregationRule *AggregationRule `json:"aggregationRule,omitempty" protobuf:"bytes,3,opt,name=aggregationRule"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  4. pkg/volume/projected/projected.go

    	opts   *volume.VolumeOptions
    }
    
    var _ volume.Mounter = &projectedVolumeMounter{}
    
    func (sv *projectedVolume) GetAttributes() volume.Attributes {
    	return volume.Attributes{
    		ReadOnly:       true,
    		Managed:        true,
    		SELinuxRelabel: true,
    	}
    
    }
    
    func (s *projectedVolumeMounter) SetUp(mounterArgs volume.MounterArgs) error {
    	return s.SetUpAt(s.GetPath(), mounterArgs)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  5. pkg/volume/fc/fc.go

    }
    
    func (plugin *fcPlugin) newUnmounterInternal(volName string, podUID types.UID, manager diskManager, mounter mount.Interface, exec utilexec.Interface) (volume.Unmounter, error) {
    	return &fcDiskUnmounter{
    		fcDisk: &fcDisk{
    			podUID:  podUID,
    			volName: volName,
    			manager: manager,
    			plugin:  plugin,
    			io:      &osIOHandler{},
    		},
    		mounter:    mounter,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  6. pkg/kubelet/kuberuntime/kuberuntime_sandbox.go

    		}
    	}
    
    	return wc, nil
    }
    
    // getKubeletSandboxes lists all (or just the running) sandboxes managed by kubelet.
    func (m *kubeGenericRuntimeManager) getKubeletSandboxes(ctx context.Context, all bool) ([]*runtimeapi.PodSandbox, error) {
    	var filter *runtimeapi.PodSandboxFilter
    	if !all {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/autoscaling/v2/types.go

    	// currentReplicas is current number of replicas of pods managed by this autoscaler,
    	// as last seen by the autoscaler.
    	// +optional
    	CurrentReplicas int32 `json:"currentReplicas,omitempty" protobuf:"varint,3,opt,name=currentReplicas"`
    
    	// desiredReplicas is the desired number of replicas of pods managed by this autoscaler,
    	// as last calculated by the autoscaler.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/autoscaling/v1/types.go

    	// currentReplicas is the current number of replicas of pods managed by this autoscaler.
    	CurrentReplicas int32 `json:"currentReplicas" protobuf:"varint,3,opt,name=currentReplicas"`
    
    	// desiredReplicas is the  desired number of replicas of pods managed by this autoscaler.
    	DesiredReplicas int32 `json:"desiredReplicas" protobuf:"varint,4,opt,name=desiredReplicas"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  9. pkg/controller/servicecidrs/servicecidrs_controller.go

    func (c *Controller) containingServiceCIDRs(ip *networkingapiv1alpha1.IPAddress) []string {
    	// only process IPs managed by the kube-apiserver
    	managedBy, ok := ip.Labels[networkingapiv1alpha1.LabelManagedBy]
    	if !ok || managedBy != ipallocator.ControllerName {
    		return []string{}
    	}
    
    	address, err := netip.ParseAddr(ip.Name)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 18K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/apps/v1/types_swagger_doc_generated.go

    	return map_DaemonSetList
    }
    
    var map_DaemonSetSpec = map[string]string{
    	"":                     "DaemonSetSpec is the specification of a daemon set.",
    	"selector":             "A label query over pods that are managed by the daemon set. Must match in order to be controlled. It must match the pod template's labels. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:14:59 UTC 2024
    - 32.5K bytes
    - Viewed (0)
Back to top