mirror of
https://github.com/kyverno/kyverno.git
synced 2025-03-10 09:56:55 +00:00
16 lines
446 B
Go
16 lines
446 B
Go
|
package test
|
||
|
|
||
|
import (
|
||
|
"github.com/kyverno/kyverno/cmd/cli/kubectl-kyverno/apis/values"
|
||
|
)
|
||
|
|
||
|
type Test struct {
|
||
|
Name string `json:"name"`
|
||
|
Policies []string `json:"policies"`
|
||
|
Resources []string `json:"resources"`
|
||
|
Variables string `json:"variables,omitempty"`
|
||
|
UserInfo string `json:"userinfo,omitempty"`
|
||
|
Results []TestResults `json:"results"`
|
||
|
Values *values.Values `json:"values,omitempty"`
|
||
|
}
|