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