Documentation ¶
Index ¶
- Constants
- func DeduplicateTargetObjects(namespace string, objs []*unstructured.Unstructured, ...) ([]*unstructured.Unstructured, []v1alpha1.ApplicationCondition, error)
- func FilterObjectsForDeletion(objs []*unstructured.Unstructured) []*unstructured.Unstructured
- func NewClusterInfoUpdater(infoSource metrics.HasClustersInfo, db db.ArgoDB, ...) *clusterInfoUpdater
- type AppStateManager
- type ApplicationController
- func (ctrl *ApplicationController) GetMetricsServer() *metrics.MetricsServer
- func (ctrl *ApplicationController) InvalidateProjectsCache(names ...string)
- func (ctrl *ApplicationController) RegisterClusterSecretUpdater(ctx context.Context)
- func (ctrl *ApplicationController) Run(ctx context.Context, statusProcessors int, operationProcessors int)
- type CompareWith
Constants ¶
View Source
const ( // EnvVarSyncWaveDelay is an environment variable which controls the delay in seconds between // each sync-wave EnvVarSyncWaveDelay = "ARGOCD_SYNC_WAVE_DELAY" )
Variables ¶
This section is empty.
Functions ¶
func DeduplicateTargetObjects ¶
func DeduplicateTargetObjects( namespace string, objs []*unstructured.Unstructured, infoProvider kubeutil.ResourceInfoProvider, ) ([]*unstructured.Unstructured, []v1alpha1.ApplicationCondition, error)
func FilterObjectsForDeletion ¶
func FilterObjectsForDeletion(objs []*unstructured.Unstructured) []*unstructured.Unstructured
func NewClusterInfoUpdater ¶
func NewClusterInfoUpdater( infoSource metrics.HasClustersInfo, db db.ArgoDB, appLister v1alpha1.ApplicationNamespaceLister, cache *appstatecache.Cache, clusterFilter func(cluster *appv1.Cluster) bool) *clusterInfoUpdater
Types ¶
type AppStateManager ¶
type AppStateManager interface { CompareAppState(app *v1alpha1.Application, project *appv1.AppProject, revision string, source v1alpha1.ApplicationSource, noCache bool, noRevisionCache bool, localObjects []string) *comparisonResult SyncAppState(app *v1alpha1.Application, state *v1alpha1.OperationState) }
AppStateManager defines methods which allow to compare application spec and actual application state.
func NewAppStateManager ¶
func NewAppStateManager( db db.ArgoDB, appclientset appclientset.Interface, repoClientset apiclient.Clientset, namespace string, kubectl kubeutil.Kubectl, settingsMgr *settings.SettingsManager, liveStateCache statecache.LiveStateCache, projInformer cache.SharedIndexInformer, metricsServer *metrics.MetricsServer, cache *appstatecache.Cache, statusRefreshTimeout time.Duration, resourceTracking argo.ResourceTracking, ) AppStateManager
NewAppStateManager creates new instance of AppStateManager
type ApplicationController ¶
type ApplicationController struct {
// contains filtered or unexported fields
}
ApplicationController is the controller for application resources.
func NewApplicationController ¶
func NewApplicationController( namespace string, settingsMgr *settings_util.SettingsManager, kubeClientset kubernetes.Interface, applicationClientset appclientset.Interface, repoClientset apiclient.Clientset, argoCache *appstatecache.Cache, kubectl kube.Kubectl, appResyncPeriod time.Duration, selfHealTimeout time.Duration, metricsPort int, metricsCacheExpiration time.Duration, metricsApplicationLabels []string, kubectlParallelismLimit int64, clusterFilter func(cluster *appv1.Cluster) bool, ) (*ApplicationController, error)
NewApplicationController creates new instance of ApplicationController.
func (*ApplicationController) GetMetricsServer ¶
func (ctrl *ApplicationController) GetMetricsServer() *metrics.MetricsServer
func (*ApplicationController) InvalidateProjectsCache ¶ added in v2.2.0
func (ctrl *ApplicationController) InvalidateProjectsCache(names ...string)
func (*ApplicationController) RegisterClusterSecretUpdater ¶
func (ctrl *ApplicationController) RegisterClusterSecretUpdater(ctx context.Context)
type CompareWith ¶
type CompareWith int
const ( // Compare live application state against state defined in latest git revision with no resolved revision caching. CompareWithLatestForceResolve CompareWith = 3 // Compare live application state against state defined in latest git revision. CompareWithLatest CompareWith = 2 // Compare live application state against state defined using revision of most recent comparison. CompareWithRecent CompareWith = 1 // Skip comparison and only refresh application resources tree ComparisonWithNothing CompareWith = 0 )
func (CompareWith) Max ¶
func (a CompareWith) Max(b CompareWith) CompareWith
func (CompareWith) Pointer ¶
func (a CompareWith) Pointer() *CompareWith
Source Files ¶
Click to show internal directories.
Click to hide internal directories.