2022-01-13 21:00:17 +00:00
|
|
|
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
|
2024-03-06 00:19:09 +00:00
|
|
|
|
|
|
|
|
//go:embed diff-cache.yaml
|
|
|
|
|
DiffCacheYaml string
|
2024-04-03 22:56:59 +00:00
|
|
|
|
|
|
|
|
//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
|
2025-09-15 14:28:13 +00:00
|
|
|
|
|
|
|
|
//go:embed simple-app-live.yaml
|
|
|
|
|
SimpleAppLiveYaml string
|
|
|
|
|
|
|
|
|
|
//go:embed simple-app-target.yaml
|
|
|
|
|
SimpleAppTargetYaml string
|
|
|
|
|
|
|
|
|
|
//go:embed target-rollout.yaml
|
|
|
|
|
TargetRolloutYaml string
|
|
|
|
|
|
|
|
|
|
//go:embed live-rollout.yaml
|
|
|
|
|
LiveRolloutYaml string
|
2022-01-13 21:00:17 +00:00
|
|
|
)
|