mirror of
https://github.com/argoproj/argo-cd
synced 2026-04-22 01:17:16 +00:00
chore: Organize Application-related defaults/constants in the Application API's package. (#5893) Signed-off-by: Shoubhik Bose <shbose@redhat.com>
13 lines
846 B
Go
13 lines
846 B
Go
package v1alpha1
|
|
|
|
const (
|
|
// AnnotationKeyRefresh is the annotation key which indicates that app needs to be refreshed. Removed by application controller after app is refreshed.
|
|
// Might take values 'normal'/'hard'. Value 'hard' means manifest cache and target cluster state cache should be invalidated before refresh.
|
|
AnnotationKeyRefresh string = "argocd.argoproj.io/refresh"
|
|
|
|
// AnnotationKeyManifestGeneratePaths is an annotation that contains a list of semicolon-separated paths in the
|
|
// manifests repository that affects the manifest generation. Paths might be either relative or absolute. The
|
|
// absolute path means an absolute path within the repository and the relative path is relative to the application
|
|
// source path within the repository.
|
|
AnnotationKeyManifestGeneratePaths = "argocd.argoproj.io/manifest-generate-paths"
|
|
)
|