Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 87 for Reconciled (0.15 sec)

  1. 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)
  2. operator/cmd/mesh/uninstall.go

    		if err != nil {
    			return err
    		}
    		iop.Name = savedIOPName(iop)
    	}
    
    	h, err = helmreconciler.NewHelmReconciler(client, kubeClient, iop, opts)
    	if err != nil {
    		return fmt.Errorf("failed to create reconciler: %v", err)
    	}
    	objectsList, err := h.GetPrunedResources(uiArgs.revision, uiArgs.purge, "")
    	if err != nil {
    		return err
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/egressselector/config_test.go

    			expectedError: nil,
    		},
    		{
    			name:       "wrong_type",
    			createFile: true,
    			contents: `
    apiVersion: apps/v1
    kind: DaemonSet
    metadata:
      labels:
        addonmanager.kubernetes.io/mode: Reconcile
        k8s-app: konnectivity-agent
      namespace: kube-system
      name: proxy-agent
    spec:
      selector:
        matchLabels:
          k8s-app: konnectivity-agent
      updateStrategy:
        type: RollingUpdate
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 05 02:24:38 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  4. 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)
  5. pkg/controller/endpointslicemirroring/endpointslicemirroring_controller_test.go

    	"k8s.io/kubernetes/pkg/controller"
    )
    
    // Most of the tests related to EndpointSlice allocation can be found in reconciler_test.go
    // Tests here primarily focus on unique controller functionality before the reconciler begins
    
    var alwaysReady = func() bool { return true }
    
    type endpointSliceMirroringController struct {
    	*Controller
    	endpointsStore     cache.Store
    	endpointSliceStore cache.Store
    	serviceStore       cache.Store
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 12 12:57:29 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top