mirror of
https://github.com/kyverno/kyverno.git
synced 2024-12-14 11:57:48 +00:00
2e2d5d8db7
* feat: update built-in resource schemas Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com> * fix unit test Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com> --------- Signed-off-by: Charles-Edouard Brétéché <charles.edouard@nirmata.com>
14 lines
216 B
Go
14 lines
216 B
Go
package data
|
|
|
|
import (
|
|
_ "embed"
|
|
)
|
|
|
|
//go:embed swagger.json
|
|
var SwaggerDoc string
|
|
|
|
//go:embed preferred-resources.json
|
|
var PreferredAPIResourceLists string
|
|
|
|
//go:embed api-resources.json
|
|
var APIResourceLists string
|