mirror of
https://github.com/argoproj/argo-cd.git
synced 2026-03-15 12:58:48 +01:00
* test: unit test for respectIgnoreDifferences bug Signed-off-by: Jesse Suen <jesse@akuity.io> * test: simplify unit test Signed-off-by: Jesse Suen <jesse@akuity.io> * fix: fix calculating patch for respect ignore diff feature Signed-off-by: Alexander Matyushentsev <AMatyushentsev@gmail.com> --------- Signed-off-by: Jesse Suen <jesse@akuity.io> Signed-off-by: Alexander Matyushentsev <AMatyushentsev@gmail.com> Co-authored-by: Jesse Suen <jesse@akuity.io>
36 lines
769 B
Go
36 lines
769 B
Go
package testdata
|
|
|
|
import _ "embed"
|
|
|
|
var (
|
|
//go:embed live-deployment.yaml
|
|
LiveDeploymentYaml string
|
|
|
|
//go:embed target-deployment.yaml
|
|
TargetDeploymentYaml string
|
|
|
|
//go:embed target-deployment-new-entries.yaml
|
|
TargetDeploymentNewEntries string
|
|
|
|
//go:embed diff-cache.yaml
|
|
DiffCacheYaml string
|
|
|
|
//go:embed live-httpproxy.yaml
|
|
LiveHTTPProxy string
|
|
|
|
//go:embed target-httpproxy.yaml
|
|
TargetHTTPProxy string
|
|
|
|
//go:embed live-deployment-env-vars.yaml
|
|
LiveDeploymentEnvVarsYaml string
|
|
|
|
//go:embed target-deployment-env-vars.yaml
|
|
TargetDeploymentEnvVarsYaml string
|
|
|
|
//go:embed minimal-image-replicas-deployment.yaml
|
|
MinimalImageReplicaDeploymentYaml string
|
|
|
|
//go:embed additional-image-replicas-deployment.yaml
|
|
AdditionalImageReplicaDeploymentYaml string
|
|
)
|