github.com/argoproj/argo-cd/v3@v3.2.1/pkg/apis/application/v1alpha1/application_annotations.go (about)

     1  package v1alpha1
     2  
     3  const (
     4  	// AnnotationKeyRefresh is the annotation key which indicates that app needs to be refreshed. Removed by application controller after app is refreshed.
     5  	// Might take values 'normal'/'hard'. Value 'hard' means manifest cache and target cluster state cache should be invalidated before refresh.
     6  	AnnotationKeyRefresh string = "argocd.argoproj.io/refresh"
     7  	// AnnotationKeyHydrate is the annotation key which indicates that app needs to be hydrated. Removed by application controller after app is hydrated.
     8  	AnnotationKeyHydrate string = "argocd.argoproj.io/hydrate"
     9  	// AnnotationKeyManifestGeneratePaths is an annotation that contains a list of semicolon-separated paths in the
    10  	// manifests repository that affects the manifest generation. Paths might be either relative or absolute. The
    11  	// absolute path means an absolute path within the repository and the relative path is relative to the application
    12  	// source path within the repository.
    13  	AnnotationKeyManifestGeneratePaths = "argocd.argoproj.io/manifest-generate-paths"
    14  )