mirror of
https://github.com/argoproj/argo-cd.git
synced 2026-04-03 23:38:46 +02:00
18 lines
368 B
Go
18 lines
368 B
Go
package testdata
|
|
|
|
import _ "embed"
|
|
|
|
var (
|
|
//go:embed live_deployment_with_managed_replica.yaml
|
|
LiveDeploymentWithManagedReplicaYaml string
|
|
|
|
//go:embed desired_deployment.yaml
|
|
DesiredDeploymentYaml string
|
|
|
|
//go:embed live_validating_webhook.yaml
|
|
LiveValidatingWebhookYaml string
|
|
|
|
//go:embed desired_validating_webhook.yaml
|
|
DesiredValidatingWebhookYaml string
|
|
)
|