mirror of
https://github.com/kubernetes-sigs/kustomize.git
synced 2026-05-17 18:25:26 +00:00
23 lines
428 B
Go
23 lines
428 B
Go
// Copyright 2022 The Kubernetes Authors.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
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{})
|
|
}
|