Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 101 for Reconciled (0.36 sec)

  1. 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)
  2. staging/src/k8s.io/api/policy/v1beta1/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: Mon Aug 07 20:44:13 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  3. 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)
  4. pkg/kubelet/cm/cpumanager/policy_static.go

    // default cpuset in the state abstraction. The CPU manager's periodic
    // reconcile loop takes care of rewriting the cpuset in cgroupfs for any
    // containers that may be running in the shared pool. For this reason,
    // applications running within exclusively-allocated containers must tolerate
    // potentially sharing their allocated CPUs for up to the CPU manager
    // reconcile period.
    type staticPolicy struct {
    	// cpu socket topology
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 06 13:16:15 UTC 2023
    - 28.8K bytes
    - Viewed (0)
  5. pilot/pkg/model/context.go

    }
    
    type GatewayController interface {
    	ConfigStoreController
    	// Reconcile updates the internal state of the gateway controller for a given input. This should be
    	// called before any List/Get calls if the state has changed
    	Reconcile(ctx *PushContext) error
    	// SecretAllowed determines if a SDS credential is accessible to a given namespace.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 33.6K bytes
    - Viewed (0)
  6. pkg/controlplane/controller/clusterauthenticationtrust/cluster_authentication_trust_controller.go

    		if c.NotAfter.After(fiveMinutesAgo) {
    			validCerts = append(validCerts, c)
    		}
    	}
    
    	return validCerts
    }
    
    // Enqueue a method to allow separate control loops to cause the controller to trigger and reconcile content.
    func (c *Controller) Enqueue() {
    	c.queue.Add(keyFn())
    }
    
    // Run the controller until stopped.
    func (c *Controller) Run(ctx context.Context, workers int) {
    	defer utilruntime.HandleCrash()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  7. pkg/kubelet/volumemanager/cache/actual_state_of_world.go

    	asw.Lock()
    	defer asw.Unlock()
    
    	volumeObj, volumeExists := asw.attachedVolumes[volumeName]
    	if !volumeExists {
    		return
    	}
    	if volumeObj.deviceMountState != operationexecutor.DeviceMountUncertain {
    		// Reconciler must have updated volume state, i.e. when a pod uses the volume and
    		// succeeded mounting the volume. Such update has fixed the device path.
    		return
    	}
    
    	volumeObj.devicePath = devicePath
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 07:34:33 UTC 2024
    - 45.8K bytes
    - Viewed (0)
  8. cluster/addons/fluentd-gcp/fluentd-gcp-configmap-old.yaml

          disable_retry_limit
          num_threads 2
          use_grpc true
        </match>
    metadata:
      name: fluentd-gcp-config-old-v1.2.5
      namespace: kube-system
      labels:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 26 07:09:07 UTC 2018
    - 16.3K bytes
    - Viewed (0)
  9. pkg/volume/csi/csi_test.go

    	"k8s.io/kubernetes/pkg/volume"
    	volumetest "k8s.io/kubernetes/pkg/volume/testing"
    )
    
    // TestCSI_VolumeAll runs a close approximation of volume workflow
    // based on operations from the volume manager/reconciler/operation executor
    func TestCSI_VolumeAll(t *testing.T) {
    	defaultFSGroupPolicy := storage.ReadWriteOnceWithFSTypeFSGroupPolicy
    
    	tests := []struct {
    		name                 string
    		specName             string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 03 15:55:13 UTC 2022
    - 21.1K bytes
    - Viewed (0)
  10. cluster/addons/fluentd-gcp/fluentd-gcp-configmap.yaml

          adjust_invalid_timestamps false
        </match>
    metadata:
      name: fluentd-gcp-config-v1.2.5
      namespace: kube-system
      labels:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 26 07:09:07 UTC 2018
    - 18.3K bytes
    - Viewed (0)
Back to top