Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 83 for reconciliation (0.18 sec)

  1. pkg/registry/rbac/rest/storage_rbac.go

    		return false, nil
    	}
    
    	// ensure bootstrap roles are created or reconciled
    	for _, clusterRole := range p.ClusterRoles {
    		opts := reconciliation.ReconcileRoleOptions{
    			Role:    reconciliation.ClusterRoleRuleOwner{ClusterRole: &clusterRole},
    			Client:  reconciliation.ClusterRoleModifier{Client: client.RbacV1().ClusterRoles()},
    			Confirm: true,
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 14 03:25:19 UTC 2022
    - 18.5K bytes
    - Viewed (0)
  2. cluster/addons/calico-policy-controller/kubecontrollersconfigurations-crd.yaml

                          Enabled by default, set to nil to disable.
                        properties:
                          reconcilerPeriod:
                            description: 'ReconcilerPeriod is the period to perform reconciliation
                              with the Calico datastore. [Default: 5m]'
                            type: string
                        type: object
                      node:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 07 20:48:43 UTC 2021
    - 11K bytes
    - Viewed (0)
  3. 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)
  4. pkg/controller/podautoscaler/monitor/metrics.go

    			Name:           "reconciliations_total",
    			Help:           "Number of reconciliations of HPA controller. The label 'action' should be either 'scale_down', 'scale_up', or 'none'. Also, the label 'error' should be either 'spec', 'internal', or 'none'. Note that if both spec and internal errors happen during a reconciliation, the first one to occur is reported in `error` label.",
    			StabilityLevel: metrics.ALPHA,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 22:47:24 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  5. releasenotes/notes/validating-webhook-reconcile-change.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
    - 32210
    releaseNotes:
    - |
      **Fixed** reconciliation logic in the validation webhook controller to rate-limit
      the retries in the loop. This should drastically reduce churn (and generated logs)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 23 19:06:28 UTC 2021
    - 302 bytes
    - Viewed (0)
  6. pkg/registry/core/service/ipallocator/controller/metrics.go

    	clusterIPRepairReconcileErrors = metrics.NewCounter(
    		&metrics.CounterOpts{
    			Namespace:      namespace,
    			Subsystem:      subsystem,
    			Name:           "reconcile_errors_total",
    			Help:           "Number of reconciliation failures on the clusterip repair reconcile loop",
    			StabilityLevel: metrics.ALPHA,
    		},
    	)
    )
    
    var registerMetricsOnce sync.Once
    
    func registerMetrics() {
    	registerMetricsOnce.Do(func() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Sep 30 15:46:06 UTC 2023
    - 2K bytes
    - Viewed (0)
  7. pkg/controller/podautoscaler/monitor/monitor.go

    }
    
    type monitor struct{}
    
    func New() Monitor {
    	return &monitor{}
    }
    
    // ObserveReconciliationResult observes some metrics from a reconciliation result.
    func (r *monitor) ObserveReconciliationResult(action ActionLabel, err ErrorLabel, duration time.Duration) {
    	reconciliationsTotal.WithLabelValues(string(action), string(err)).Inc()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 22:47:24 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  8. pkg/registry/core/service/portallocator/controller/metrics.go

    	nodePortRepairReconcileErrors = metrics.NewCounter(
    		&metrics.CounterOpts{
    			Namespace:      namespace,
    			Subsystem:      subsystem,
    			Name:           "reconcile_errors_total",
    			Help:           "Number of reconciliation failures on the nodeport repair reconcile loop",
    			StabilityLevel: metrics.ALPHA,
    		},
    	)
    )
    
    var registerMetricsOnce sync.Once
    
    func registerMetrics() {
    	registerMetricsOnce.Do(func() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Sep 30 15:46:06 UTC 2023
    - 2K bytes
    - Viewed (0)
  9. pkg/kubelet/volumemanager/reconciler/reconciler.go

    	}
    	if len(rc.volumesNeedUpdateFromNodeStatus) == 0 {
    		// ASW is fully populated only after both devicePaths and uncertain volume attach-ability
    		// were reconstructed from the API server.
    		// This will start reconciliation of node.status.volumesInUse.
    		rc.updateLastSyncTime()
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:23:12 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  10. pkg/apis/rbac/helpers_test.go

    // that have gone through conversion and defaulting.  This is required because these helper functions are
    // used to create the bootstrap RBAC policy which is used during reconciliation.  If they produced objects
    // that did not match, reconciliation would incorrectly add duplicate data to the cluster's RBAC policy.
    func TestHelpersRoundTrip(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 9.2K bytes
    - Viewed (0)
Back to top