Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for reconciliation (0.19 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. pkg/kubelet/volumemanager/reconciler/reconciler_common.go

    // controller. This reconciles state for the kubelet volume manager. That
    // reconciles state for the attach/detach controller.
    type Reconciler interface {
    	// Starts running the reconciliation loop which executes periodically, checks
    	// if volumes that should be mounted are mounted and volumes that should
    	// be unmounted are unmounted. If not, it will trigger mount/unmount
    	// operations to rectify.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:23:12 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. pkg/kubelet/kubelet_node_status.go

    			requiresUpdate = true
    		}
    	}
    	return requiresUpdate
    }
    
    // Zeros out extended resource capacity during reconciliation.
    func (kl *Kubelet) reconcileExtendedResource(initialNode, node *v1.Node) bool {
    	requiresUpdate := updateDefaultResources(initialNode, node)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 31.1K bytes
    - Viewed (0)
Back to top