mirror of
https://github.com/argoproj/argo-cd
synced 2026-05-01 22:07:19 +00:00
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
|
||
|
|
)
|