mirror of
https://github.com/argoproj/argo-cd
synced 2026-04-21 17:07:16 +00:00
feat: new sync option to use ignore diff configs during sync (#8078) Signed-off-by: Leonardo Luz Almeida <leonardo_almeida@intuit.com>
14 lines
252 B
Go
14 lines
252 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
|
|
)
|