Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var DefaultBasePeerDirs = []string{
"k8s.io/apimachinery/pkg/apis/meta/v1",
"k8s.io/apimachinery/pkg/conversion",
"k8s.io/apimachinery/pkg/runtime",
}
DefaultBasePeerDirs are the peer-dirs nearly everybody will use, i.e. those coming from apimachinery.
Functions ¶
This section is empty.
Types ¶
type Args ¶ added in v0.30.0
type Args struct { // The filename of the generated results. OutputFile string // Base peer dirs which nearly everybody will use, i.e. outside of Kubernetes core. Peer dirs // are declared to make the generator pick up manually written conversion funcs from external // packages. BasePeerDirs []string // Custom peer dirs which are application specific. Peer dirs are declared to make the // generator pick up manually written conversion funcs from external packages. ExtraPeerDirs []string // Additional dirs to parse and load, but not consider for peers. This is // useful when packages depend on other packages and want to call // conversions across them. ExtraDirs []string // SkipUnsafe indicates whether to generate unsafe conversions to improve the efficiency // of these operations. The unsafe operation is a direct pointer assignment via unsafe // (within the allowed uses of unsafe) and is equivalent to a proposed Golang change to // allow structs that are identical to be assigned to each other. SkipUnsafe bool // GoHeaderFile is the path to a boilerplate header file for generated // code. GoHeaderFile string }
Click to show internal directories.
Click to hide internal directories.