Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 33 for reconciliation (0.48 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. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top