Files
argo-cd/controller/testdata/data.go
argo-cd-cherry-pick-bot[bot] 27c5065308 fix: revert #24197 (cherry-pick #25294 for 3.2) (#25314)
Signed-off-by: Blake Pettersson <blake.pettersson@gmail.com>
Co-authored-by: Blake Pettersson <blake.pettersson@gmail.com>
2025-11-17 23:19:48 -10:00

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
)