mirror of
https://github.com/kubernetes-sigs/kustomize.git
synced 2026-05-17 18:25:26 +00:00
20 lines
346 B
Go
20 lines
346 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"k8s.io/cli-runtime/pkg/genericclioptions"
|
|
"k8s.io/kube-openapi/pkg/validation/spec"
|
|
//"github.com/go-openapi/swag"
|
|
)
|
|
|
|
func main() {
|
|
//hey := yaml.TypeMeta{}
|
|
//fmt.Printf("%v\n", hey)
|
|
|
|
// fmt.Printf("%v\n", swag.BooleanProperty())
|
|
|
|
genericclioptions.NewConfigFlags(true)
|
|
fmt.Printf("%v\n", spec.Schema{})
|
|
}
|