Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 31 for reconciliation (0.52 sec)

  1. pkg/controller/controller_ref_manager.go

    //
    // A non-nil error is returned if some form of reconciliation was attempted and
    // failed. Usually, controllers should try again later in case reconciliation
    // is still needed.
    //
    // If the error is nil, either the reconciliation succeeded, or no
    // reconciliation was necessary. The returned boolean indicates whether you now
    // own the object.
    //
    // No reconciliation will be attempted if the controller is being deleted.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 12 12:57:29 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/reconcilers/peer_endpoint_lease.go

    			baseKey:   baseKey,
    			leaseTime: leaseTime,
    		},
    	}, nil
    }
    
    // PeerEndpointController is the controller manager for updating the peer endpoint leases.
    // This provides a separate independent reconciliation loop for peer endpoint leases
    // which ensures that the peer kube-apiservers are fetching the updated endpoint info for a given apiserver
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 09:23:05 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  3. pilot/pkg/features/experimental.go

    			return 10 * time.Second
    		}
    		return val
    	}()
    
    	EnableStatus = env.Register(
    		"PILOT_ENABLE_STATUS",
    		false,
    		"If enabled, pilot will update the CRD Status field of all istio resources with reconciliation status.",
    	).Get()
    
    	EnableGatewayAPI = env.Register("PILOT_ENABLE_GATEWAY_API", true,
    		"If this is set to true, support for Kubernetes gateway-api (github.com/kubernetes-sigs/gateway-api) will "+
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/dra/manager.go

    )
    
    // draManagerStateFileName is the file name where dra manager stores its state
    const draManagerStateFileName = "dra_manager_state"
    
    // defaultReconcilePeriod is the default reconciliation period to keep all claim info state in sync.
    const defaultReconcilePeriod = 60 * time.Second
    
    // ActivePodsFunc is a function that returns a list of pods to reconcile.
    type ActivePodsFunc func() []*v1.Pod
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 13:23:29 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/admissionregistration/v1beta1/generated.proto

      // SideEffects states whether this webhook has side effects.
      // Acceptable values are: Unknown, None, Some, NoneOnDryRun
      // Webhooks with side effects MUST implement a reconciliation system, since a request may be
      // rejected by a future step in the admission chain and the side effects therefore need to be undone.
      // Requests with the dryRun attribute will be auto-rejected if they match a webhook with
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/rbac/v1/types.go

    	NonResourceAll = "*"
    
    	GroupKind          = "Group"
    	ServiceAccountKind = "ServiceAccount"
    	UserKind           = "User"
    
    	// AutoUpdateAnnotationKey is the name of an annotation which prevents reconciliation if set to "false"
    	AutoUpdateAnnotationKey = "rbac.authorization.kubernetes.io/autoupdate"
    )
    
    // Authorization is calculated against
    // 1. evaluation of ClusterRoleBindings - short circuit on match
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  7. cni/pkg/nodeagent/informers.go

    	}
    	for _, pod := range s.pods.List(namespace, klabels.Everything()) {
    		// ztunnel pods are never "added to/removed from the mesh", so do not fire
    		// spurious events for them to avoid triggering extra
    		// ztunnel node reconciliation checks.
    		if !util.IsZtunnelPod(s.systemNamespace, pod) {
    			log.Debugf("Enqueuing pod %s/%s", pod.Namespace, pod.Name)
    			s.queue.Add(controllers.Event{
    				New:   pod,
    				Old:   pod,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:35 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  8. pkg/webhooks/validation/controller/controller.go

    	whc := c.webhooks.Get(name, "")
    	scope := scope.WithLabels("webhook", name)
    	// Stop early if webhook is not present, rather than attempting (and failing) to reconcile permanently
    	// If the webhook is later added a new reconciliation request will trigger it to update
    	if whc == nil {
    		scope.Infof("Skip patching webhook, not found")
    		return nil
    	}
    
    	scope.Debugf("Reconcile(enter)")
    	defer func() { scope.Debugf("Reconcile(exit)") }()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 16:52:19 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/internal/generic/controller_test.go

    	wg.Wait()
    
    	// TODO(alexzielenski): Find a better way to test this since the
    	// controller drops any pending events when it shuts down.
    	verifyNoMoreEvents()
    }
    
    // Shows that an object which fails reconciliation will retry
    func TestReconcileRetry(t *testing.T) {
    	testContext, testCancel := context.WithTimeout(context.Background(), 2*time.Second)
    	defer testCancel()
    
    	calls := atomic.Uint64{}
    	success := atomic.Bool{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 12 18:58:24 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/admissionregistration/v1/generated.proto

      // SideEffects states whether this webhook has side effects.
      // Acceptable values are: None, NoneOnDryRun (webhooks created via v1beta1 may also specify Some or Unknown).
      // Webhooks with side effects MUST implement a reconciliation system, since a request may be
      // rejected by a future step in the admission chain and the side effects therefore need to be undone.
      // Requests with the dryRun attribute will be auto-rejected if they match a webhook with
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24.4K bytes
    - Viewed (0)
Back to top