mirror of
https://github.com/argoproj/argo-cd
synced 2026-04-21 17:07:16 +00:00
17 lines
368 B
Go
17 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
|
|
)
|