Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 83 for reconciliation (0.28 sec)

  1. staging/src/k8s.io/api/rbac/v1alpha1/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 Mar 28 22:49:19 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  2. operator/pkg/helmreconciler/prune.go

    			}
    		}
    		return errs.ToError()
    	})
    }
    
    // PruneControlPlaneByRevisionWithController is called to remove specific control plane revision
    // during reconciliation process of controller.
    // It returns the install status and any error encountered.
    func (h *HelmReconciler) PruneControlPlaneByRevisionWithController(iopSpec *v1alpha1.IstioOperatorSpec) (*v1alpha1.InstallStatus, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/rbac/v1beta1/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 Mar 28 22:49:19 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/gateway/deploymentcontroller_test.go

    	wantReconcile := int32(0)
    	expectReconciled := func() {
    		t.Helper()
    		wantReconcile++
    		assert.EventuallyEqual(t, reconciles.Load, wantReconcile, retry.Timeout(time.Second*5), retry.Message("no reconciliation"))
    	}
    
    	d.patcher = func(g schema.GroupVersionResource, name string, namespace string, data []byte, subresources ...string) error {
    		if g == gvr.Service {
    			reconciles.Inc()
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 21:43:20 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/cpumanager/cpu_manager_test.go

    					foundSucceededContainer = true
    					break
    				}
    			}
    			if !foundSucceededContainer {
    				t.Errorf("%v", testCase.description)
    				t.Errorf("Expected reconciliation success for container: %s", testCase.expectSucceededContainerName)
    			}
    		}
    
    		if testCase.expectFailedContainerName != "" {
    			// Search failed reconciled containers for the supplied name.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 06 13:16:15 UTC 2023
    - 42.9K bytes
    - Viewed (0)
  6. pkg/controller/podautoscaler/horizontal.go

    	// Register HPA in the hpaSelectors map if it's not present yet. Attaching the Nothing selector
    	// that does not select objects. The actual selector is going to be updated
    	// when it's available during the autoscaler reconciliation.
    	a.hpaSelectorsMux.Lock()
    	defer a.hpaSelectorsMux.Unlock()
    	if hpaKey := selectors.Parse(key); !a.hpaSelectors.SelectorExists(hpaKey) {
    		a.hpaSelectors.PutSelector(hpaKey, labels.Nothing())
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  7. pkg/controlplane/instance.go

    // CompletedConfig embeds a private pointer that cannot be instantiated outside of this package
    type CompletedConfig struct {
    	*completedConfig
    }
    
    // EndpointReconcilerConfig holds the endpoint reconciler and endpoint reconciliation interval to be
    // used by the master.
    type EndpointReconcilerConfig struct {
    	Reconciler reconcilers.EndpointReconciler
    	Interval   time.Duration
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:50:04 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  8. prow/config/calico.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: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  9. pkg/kubelet/cm/cpumanager/cpu_manager.go

    	// to make UpdateContainerResources() calls against the containers.
    	containerRuntime runtimeService
    
    	// activePods is a method for listing active pods on the node
    	// so all the containers can be updated in the reconciliation loop.
    	activePods ActivePodsFunc
    
    	// podStatusProvider provides a method for obtaining pod statuses
    	// and the containerID of their containers
    	podStatusProvider status.PodStatusProvider
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 03 16:26:09 UTC 2023
    - 19.9K bytes
    - Viewed (0)
  10. pkg/kubelet/status/status_manager.go

    					continue
    				}
    				uidOfStatus = mirrorUID
    			}
    
    			// if a new status update has been delivered, trigger an update, otherwise the
    			// pod can wait for the next bulk check (which performs reconciliation as well)
    			if !all {
    				if m.apiStatusVersions[uidOfStatus] >= status.version {
    					continue
    				}
    				updatedStatuses = append(updatedStatuses, podSync{uid, uidOfStatus, status})
    				continue
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 44.3K bytes
    - Viewed (0)
Back to top