1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2025-03-31 03:45:17 +00:00

add optional tag to gr.status

This commit is contained in:
Shuting Zhao 2020-11-18 15:07:12 -08:00
parent 2d8092d97c
commit 168bb21093
6 changed files with 2 additions and 4 deletions

View file

@ -1418,7 +1418,6 @@ spec:
type: object
required:
- spec
- status
type: object
served: true
storage: true

View file

@ -168,7 +168,6 @@ spec:
type: object
required:
- spec
- status
type: object
served: true
storage: true

View file

@ -1423,7 +1423,6 @@ spec:
type: object
required:
- spec
- status
type: object
served: true
storage: true

View file

@ -1423,7 +1423,6 @@ spec:
type: object
required:
- spec
- status
type: object
served: true
storage: true

1
go.sum
View file

@ -1005,6 +1005,7 @@ golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8T
golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543 h1:E7g+9GITq07hpfrRu66IVDexMakfv52eLZ2CXBWiKr4=
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 h1:go1bK/D/BFZV2I8cIQd1NKEZ+0owSTG1fDTci4IqFcE=
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
gomodules.xyz/jsonpatch/v2 v2.0.1/go.mod h1:IhYNNY4jnS53ZnfE4PAmpKtDpTCj1JFXc+3mwe7XcUU=
google.golang.org/api v0.4.0/go.mod h1:8k5glujaEP+g9n7WNsDg8QP6cUVNI86fCNMcbazEtwE=

View file

@ -25,6 +25,7 @@ type GenerateRequest struct {
Spec GenerateRequestSpec `json:"spec" yaml:"spec"`
// Status contains statistics related to generate request.
// +optional
Status GenerateRequestStatus `json:"status" yaml:"status"`
}