Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 76 for reconciliation (0.16 sec)

  1. operator/pkg/helmreconciler/common.go

    	OwningResourceNamespace = MetadataNamespace + "/owning-resource-namespace"
    	// OwningResourceNotPruned indicates that the resource should not be pruned during reconciliation cycles,
    	// note this will not prevent the resource from being deleted if the owning resource is deleted.
    	OwningResourceNotPruned = MetadataNamespace + "/owning-resource-not-pruned"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 12 17:12:54 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  2. pkg/kubelet/status/status_manager_test.go

    			APIVersion: "v1",
    		},
    		ObjectMeta: metav1.ObjectMeta{
    			UID:       "12345678",
    			Name:      "foo",
    			Namespace: "new",
    		},
    	}
    }
    
    // After adding reconciliation, if status in pod manager is different from the cached status, a reconciliation
    // will be triggered, which will mess up all the old unit test.
    // To simplify the implementation of unit test, we add testSyncBatch() here, it will make sure the statuses in
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 68.1K bytes
    - Viewed (0)
  3. pkg/registry/core/service/portallocator/operation.go

    		err := op.pa.Release(release)
    		if err != nil {
    			errors = append(errors, err)
    		}
    	}
    
    	// Even on error, we don't rollback
    	// Problems should be fixed by an eventual reconciliation / restart
    	op.shouldRollback = false
    
    	if len(errors) == 0 {
    		return nil
    	}
    
    	return errors
    }
    
    // Allocates a port, and record it for future rollback
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 4.2K 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. pkg/kubelet/pluginmanager/reconciler/reconciler.go

    // with the actual state of the world by triggering register and unregister
    // operations. Also provides a means to add a handler for a plugin type.
    type Reconciler interface {
    	// Run starts running the reconciliation loop which executes periodically,
    	// checks if plugins are correctly registered or unregistered.
    	// If not, it will trigger register/unregister operations to rectify.
    	Run(stopCh <-chan struct{})
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 6.2K bytes
    - Viewed (0)
  6. pkg/apis/rbac/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"
    )
    
    // PolicyRule holds information that describes a policy rule, but does not contain information
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 24 20:35:20 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/admission/interfaces.go

    	GetOperationOptions() runtime.Object
    	// IsDryRun indicates that modifications will definitely not be persisted for this request. This is to prevent
    	// admission controllers with side effects and a method of reconciliation from being overwhelmed.
    	// However, a value of false for this does not mean that the modification will be persisted, because it
    	// could still be rejected by a subsequent validation step.
    	IsDryRun() bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 28 14:03:18 UTC 2021
    - 8K bytes
    - Viewed (0)
  8. pilot/pkg/config/monitor/monitor.go

    // as files added to a directory immediately after creation may not trigger events; as such it is only useful
    // when an event causes a full reconciliation, rather than acting on an individual event
    type recursiveWatcher struct {
    	*fsnotify.Watcher
    }
    
    // watchRecursive adds all directories under the given one to the watch list.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 12 17:36:33 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  9. pkg/controlplane/controller/kubernetesservice/controller.go

    		defer close(localStopCh)
    		select {
    		case <-stopCh: // from Start
    		case <-c.stopCh: // from Stop
    		}
    	}()
    
    	go c.Run(localStopCh)
    }
    
    // Stop cleans up this API Servers endpoint reconciliation leases so another master can take over more quickly.
    func (c *Controller) Stop() {
    	c.lock.Lock()
    	defer c.lock.Unlock()
    
    	select {
    	case <-c.stopCh:
    		return // only close once
    	default:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 16 16:33:01 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  10. 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)
Back to top