1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2025-03-07 00:17:13 +00:00
kyverno/cmd/cli/kubectl-kyverno/commands/create/templates/templates.go
Charles-Edouard Brétéché a1d06b41df
feat: add create exception cli command (#7781)
Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com>
2023-09-12 12:58:30 +00:00

20 lines
313 B
Go

package templates
import (
_ "embed"
)
//go:embed test.yaml
var TestTemplate string
//go:embed values.yaml
var ValuesTemplate string
//go:embed user-info.yaml
var UserInfoTemplate string
//go:embed exception.yaml
var ExceptionTemplate string
//go:embed metrics-config.yaml
var MetricsConfigTemplate string