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>
26 lines
1.3 KiB
Go
26 lines
1.3 KiB
Go
package v1alpha1
|
|
|
|
import "time"
|
|
|
|
const (
|
|
DefaultSyncRetryMaxDuration time.Duration = 180000000000 // 3m0s
|
|
DefaultSyncRetryDuration time.Duration = 5000000000 // 5s
|
|
DefaultSyncRetryFactor = int64(2)
|
|
// ResourcesFinalizerName is the finalizer value which we inject to finalize deletion of an application
|
|
ResourcesFinalizerName string = "resources-finalizer.argocd.argoproj.io"
|
|
|
|
// ForegroundPropagationPolicyFinalizer is the finalizer we inject to delete application with foreground propagation policy
|
|
ForegroundPropagationPolicyFinalizer string = "resources-finalizer.argocd.argoproj.io/foreground"
|
|
|
|
// BackgroundPropagationPolicyFinalizer is the finalizer we inject to delete application with background propagation policy
|
|
BackgroundPropagationPolicyFinalizer = "resources-finalizer.argocd.argoproj.io/background"
|
|
|
|
// DefaultAppProjectName contains name of 'default' app project, which is available in every Argo CD installation
|
|
DefaultAppProjectName = "default"
|
|
|
|
// RevisionHistoryLimit is the max number of successful sync to keep in history
|
|
RevisionHistoryLimit = 10
|
|
|
|
// KubernetesInternalAPIServerAddr is address of the k8s API server when accessing internal to the cluster
|
|
KubernetesInternalAPIServerAddr = "https://kubernetes.default.svc"
|
|
)
|