Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 108 for Reconciled (0.16 sec)

  1. pkg/registry/core/service/ipallocator/controller/repairip.go

    // The bidirectional relation is achieved using the following fields:
    // Service.Spec.Cluster == IPAddress.Name AND IPAddress.ParentRef == Service
    //
    // The controller use two reconcile loops, one for Services and other for IPAddress.
    // The Service reconcile loop verifies the bidirectional relation exists and is correct.
    // 1. Service_X [ClusterIP_X]  <------>  IPAddress_X [Ref:Service_X]   ok
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  2. pkg/apis/core/types.go

    )
    
    // ModifyVolumeStatus represents the status object of ControllerModifyVolume operation
    type ModifyVolumeStatus struct {
    	// targetVolumeAttributesClassName is the name of the VolumeAttributesClass the PVC currently being reconciled
    	TargetVolumeAttributesClassName string
    	// status is the status of the ControllerModifyVolume operation. It can be in any of following states:
    	//  - Pending
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"targetVolumeAttributesClassName": "targetVolumeAttributesClassName is the name of the VolumeAttributesClass the PVC currently being reconciled",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  4. cmd/kube-controller-manager/app/options/options_test.go

    		expectErrors           bool
    		expectedErrorSubString string
    		options                interface {
    			Validate() []error
    		}
    	}{
    		{
    			name:                   "AttachDetachControllerOptions reconciler sync loop period less than one second",
    			expectErrors:           true,
    			expectedErrorSubString: "duration time must be greater than one second",
    			options: &AttachDetachControllerOptions{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  5. cmd/kube-apiserver/app/options/options_test.go

    		"--egress-selector-config-file=/var/run/kubernetes/egress-selector/connectivity.yaml",
    		"--enable-aggregator-routing=true",
    		"--enable-priority-and-fairness=false",
    		"--enable-logs-handler=false",
    		"--endpoint-reconciler-type=" + string(reconcilers.LeaseEndpointReconcilerType),
    		"--etcd-keyfile=/var/run/kubernetes/etcd.key",
    		"--etcd-certfile=/var/run/kubernetes/etcdce.crt",
    		"--etcd-cafile=/var/run/kubernetes/etcdca.crt",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/generated.proto

    }
    
    // ModifyVolumeStatus represents the status object of ControllerModifyVolume operation
    message ModifyVolumeStatus {
      // targetVolumeAttributesClassName is the name of the VolumeAttributesClass the PVC currently being reconciled
      optional string targetVolumeAttributesClassName = 1;
    
      // status is the status of the ControllerModifyVolume operation. It can be in any of following states:
      //  - Pending
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/policy/v1/types.go

    	// that signal whether any of the pods covered by the PDB can be disrupted.
    	DisruptionAllowedCondition = "DisruptionAllowed"
    
    	// SyncFailedReason is set on the DisruptionAllowed condition if reconcile
    	// of the PDB failed and therefore disruption of pods are not allowed.
    	SyncFailedReason = "SyncFailed"
    	// SufficientPodsReason is set on the DisruptionAllowed condition if there are
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  8. pkg/controller/volume/attachdetach/cache/actual_state_of_world.go

    	// based on the current actual state of the world. This function is currently used by
    	// reconciler to verify whether the volume is still attached to the node.
    	GetAttachedVolumesPerNode() map[types.NodeName][]operationexecutor.AttachedVolume
    
    	// GetNodesForAttachedVolume returns the nodes on which the volume is attached.
    	// This function is used by reconciler for multi-attach check.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 07:35:17 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  9. pkg/controller/resourcequota/resource_quota_monitor.go

    	// TODO: if we can share storage with garbage collector, it may make sense to support other resources
    	// until that time, aggregated api servers will have to run their own controller to reconcile their own quota.
    	return nil, fmt.Errorf("unable to monitor quota for resource %q", resource.String())
    }
    
    // SyncMonitors rebuilds the monitor set according to the supplied resources,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  10. pilot/pkg/features/pilot.go

    		"Name of the default GatewayClass").Get()
    
    	ManagedGatewayController = env.Register("PILOT_GATEWAY_API_CONTROLLER_NAME", "istio.io/gateway-controller",
    		"Gateway API controller name. istiod will only reconcile Gateway API resources referencing a GatewayClass with this controller name").Get()
    )
    
    // UnsafeFeaturesEnabled returns true if any unsafe features are enabled.
    func UnsafeFeaturesEnabled() bool {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
Back to top