├── .gitignore ├── LICENSE ├── README.md ├── cue.mod └── module.cue ├── docs ├── adopting.md ├── design.md ├── developing.md └── yamhell.md ├── go.mod ├── go.sum ├── lib ├── kindorder.cue └── toposort.cue ├── schema ├── dagger.go ├── k8s │ ├── all.cue │ ├── usr │ │ └── k8s.io │ │ │ ├── api │ │ │ ├── admission │ │ │ │ ├── v1 │ │ │ │ │ └── augment.cue │ │ │ │ └── v1beta1 │ │ │ │ │ └── augment.cue │ │ │ ├── admissionregistration │ │ │ │ ├── v1 │ │ │ │ │ └── augment.cue │ │ │ │ ├── v1alpha1 │ │ │ │ │ └── augment.cue │ │ │ │ └── v1beta1 │ │ │ │ │ └── augment.cue │ │ │ ├── apidiscovery │ │ │ │ └── v2beta1 │ │ │ │ │ └── augment.cue │ │ │ ├── apiserverinternal │ │ │ │ └── v1alpha1 │ │ │ │ │ └── augment.cue │ │ │ ├── apps │ │ │ │ ├── v1 │ │ │ │ │ └── augment.cue │ │ │ │ ├── v1beta1 │ │ │ │ │ └── augment.cue │ │ │ │ └── v1beta2 │ │ │ │ │ └── augment.cue │ │ │ ├── authentication │ │ │ │ ├── v1 │ │ │ │ │ └── augment.cue │ │ │ │ ├── v1alpha1 │ │ │ │ │ └── augment.cue │ │ │ │ └── v1beta1 │ │ │ │ │ └── augment.cue │ │ │ ├── authorization │ │ │ │ ├── v1 │ │ │ │ │ └── augment.cue │ │ │ │ └── v1beta1 │ │ │ │ │ └── augment.cue │ │ │ ├── autoscaling │ │ │ │ ├── v1 │ │ │ │ │ └── augment.cue │ │ │ │ ├── v2 │ │ │ │ │ └── augment.cue │ │ │ │ ├── v2beta1 │ │ │ │ │ └── augment.cue │ │ │ │ └── v2beta2 │ │ │ │ │ └── augment.cue │ │ │ ├── batch │ │ │ │ ├── v1 │ │ │ │ │ └── augment.cue │ │ │ │ └── v1beta1 │ │ │ │ │ └── augment.cue │ │ │ ├── certificates │ │ │ │ ├── v1 │ │ │ │ │ └── augment.cue │ │ │ │ ├── v1alpha1 │ │ │ │ │ └── augment.cue │ │ │ │ └── v1beta1 │ │ │ │ │ └── augment.cue │ │ │ ├── coordination │ │ │ │ ├── v1 │ │ │ │ │ └── augment.cue │ │ │ │ └── v1beta1 │ │ │ │ │ └── augment.cue │ │ │ ├── core │ │ │ │ └── v1 │ │ │ │ │ └── augment.cue │ │ │ ├── discovery │ │ │ │ ├── v1 │ │ │ │ │ └── augment.cue │ │ │ │ └── v1beta1 │ │ │ │ │ └── augment.cue │ │ │ ├── events │ │ │ │ ├── v1 │ │ │ │ │ └── augment.cue │ │ │ │ └── v1beta1 │ │ │ │ │ └── augment.cue │ │ │ ├── extensions │ │ │ │ └── v1beta1 │ │ │ │ │ └── augment.cue │ │ │ ├── flowcontrol │ │ │ │ ├── v1alpha1 │ │ │ │ │ └── augment.cue │ │ │ │ ├── v1beta1 │ │ │ │ │ └── augment.cue │ │ │ │ ├── v1beta2 │ │ │ │ │ └── augment.cue │ │ │ │ └── v1beta3 │ │ │ │ │ └── augment.cue │ │ │ ├── imagepolicy │ │ │ │ └── v1alpha1 │ │ │ │ │ └── augment.cue │ │ │ ├── networking │ │ │ │ ├── v1 │ │ │ │ │ └── augment.cue │ │ │ │ ├── v1alpha1 │ │ │ │ │ └── augment.cue │ │ │ │ └── v1beta1 │ │ │ │ │ └── augment.cue │ │ │ ├── node │ │ │ │ ├── v1 │ │ │ │ │ └── augment.cue │ │ │ │ ├── v1alpha1 │ │ │ │ │ └── augment.cue │ │ │ │ └── v1beta1 │ │ │ │ │ └── augment.cue │ │ │ ├── policy │ │ │ │ ├── v1 │ │ │ │ │ └── augment.cue │ │ │ │ └── v1beta1 │ │ │ │ │ └── augment.cue │ │ │ ├── rbac │ │ │ │ ├── v1 │ │ │ │ │ └── augment.cue │ │ │ │ ├── v1alpha1 │ │ │ │ │ └── augment.cue │ │ │ │ └── v1beta1 │ │ │ │ │ └── augment.cue │ │ │ ├── resource │ │ │ │ └── v1alpha1 │ │ │ │ │ └── augment.cue │ │ │ ├── scheduling │ │ │ │ ├── v1 │ │ │ │ │ └── augment.cue │ │ │ │ ├── v1alpha1 │ │ │ │ │ └── augment.cue │ │ │ │ └── v1beta1 │ │ │ │ │ └── augment.cue │ │ │ └── storage │ │ │ │ ├── v1 │ │ │ │ └── augment.cue │ │ │ │ ├── v1alpha1 │ │ │ │ └── augment.cue │ │ │ │ └── v1beta1 │ │ │ │ └── augment.cue │ │ │ └── apimachinery │ │ │ └── pkg │ │ │ └── util │ │ │ └── intstr │ │ │ └── augment.cue │ └── v0.27 │ │ ├── cue.mod │ │ ├── gen │ │ │ └── k8s.io │ │ │ │ ├── api │ │ │ │ ├── admission │ │ │ │ │ ├── v1 │ │ │ │ │ │ ├── register_go_gen.cue │ │ │ │ │ │ └── types_go_gen.cue │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ ├── register_go_gen.cue │ │ │ │ │ │ └── types_go_gen.cue │ │ │ │ ├── admissionregistration │ │ │ │ │ ├── v1 │ │ │ │ │ │ ├── doc_go_gen.cue │ │ │ │ │ │ ├── register_go_gen.cue │ │ │ │ │ │ └── types_go_gen.cue │ │ │ │ │ ├── v1alpha1 │ │ │ │ │ │ ├── doc_go_gen.cue │ │ │ │ │ │ ├── register_go_gen.cue │ │ │ │ │ │ └── types_go_gen.cue │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ ├── doc_go_gen.cue │ │ │ │ │ │ ├── register_go_gen.cue │ │ │ │ │ │ └── types_go_gen.cue │ │ │ │ ├── apidiscovery │ │ │ │ │ └── v2beta1 │ │ │ │ │ │ ├── register_go_gen.cue │ │ │ │ │ │ └── types_go_gen.cue │ │ │ │ ├── apiserverinternal │ │ │ │ │ └── v1alpha1 │ │ │ │ │ │ ├── doc_go_gen.cue │ │ │ │ │ │ ├── register_go_gen.cue │ │ │ │ │ │ └── types_go_gen.cue │ │ │ │ ├── apps │ │ │ │ │ ├── v1 │ │ │ │ │ │ ├── register_go_gen.cue │ │ │ │ │ │ └── types_go_gen.cue │ │ │ │ │ ├── v1beta1 │ │ │ │ │ │ ├── register_go_gen.cue │ │ │ │ │ │ └── types_go_gen.cue │ │ │ │ │ └── v1beta2 │ │ │ │ │ │ ├── register_go_gen.cue │ │ │ │ │ │ └── types_go_gen.cue │ │ │ │ ├── authentication │ │ │ │ │ ├── v1 │ │ │ │ │ │ ├── register_go_gen.cue │ │ │ │ │ │ └── types_go_gen.cue │ │ │ │ │ ├── v1alpha1 │ │ │ │ │ │ ├── register_go_gen.cue │ │ │ │ │ │ └── types_go_gen.cue │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ ├── register_go_gen.cue │ │ │ │ │ │ └── types_go_gen.cue │ │ │ │ ├── authorization │ │ │ │ │ ├── v1 │ │ │ │ │ │ ├── register_go_gen.cue │ │ │ │ │ │ └── types_go_gen.cue │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ ├── register_go_gen.cue │ │ │ │ │ │ └── types_go_gen.cue │ │ │ │ ├── autoscaling │ │ │ │ │ ├── v1 │ │ │ │ │ │ ├── register_go_gen.cue │ │ │ │ │ │ └── types_go_gen.cue │ │ │ │ │ ├── v2 │ │ │ │ │ │ ├── register_go_gen.cue │ │ │ │ │ │ └── types_go_gen.cue │ │ │ │ │ ├── v2beta1 │ │ │ │ │ │ ├── register_go_gen.cue │ │ │ │ │ │ └── types_go_gen.cue │ │ │ │ │ └── v2beta2 │ │ │ │ │ │ ├── register_go_gen.cue │ │ │ │ │ │ └── types_go_gen.cue │ │ │ │ ├── batch │ │ │ │ │ ├── v1 │ │ │ │ │ │ ├── register_go_gen.cue │ │ │ │ │ │ └── types_go_gen.cue │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ ├── register_go_gen.cue │ │ │ │ │ │ └── types_go_gen.cue │ │ │ │ ├── certificates │ │ │ │ │ ├── v1 │ │ │ │ │ │ ├── register_go_gen.cue │ │ │ │ │ │ └── types_go_gen.cue │ │ │ │ │ ├── v1alpha1 │ │ │ │ │ │ ├── register_go_gen.cue │ │ │ │ │ │ └── types_go_gen.cue │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ ├── register_go_gen.cue │ │ │ │ │ │ └── types_go_gen.cue │ │ │ │ ├── coordination │ │ │ │ │ ├── v1 │ │ │ │ │ │ ├── register_go_gen.cue │ │ │ │ │ │ └── types_go_gen.cue │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ ├── register_go_gen.cue │ │ │ │ │ │ └── types_go_gen.cue │ │ │ │ ├── core │ │ │ │ │ └── v1 │ │ │ │ │ │ ├── annotation_key_constants_go_gen.cue │ │ │ │ │ │ ├── doc_go_gen.cue │ │ │ │ │ │ ├── register_go_gen.cue │ │ │ │ │ │ ├── types_go_gen.cue │ │ │ │ │ │ ├── well_known_labels_go_gen.cue │ │ │ │ │ │ └── well_known_taints_go_gen.cue │ │ │ │ ├── discovery │ │ │ │ │ ├── v1 │ │ │ │ │ │ ├── register_go_gen.cue │ │ │ │ │ │ ├── types_go_gen.cue │ │ │ │ │ │ └── well_known_labels_go_gen.cue │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ ├── register_go_gen.cue │ │ │ │ │ │ ├── types_go_gen.cue │ │ │ │ │ │ └── well_known_labels_go_gen.cue │ │ │ │ ├── events │ │ │ │ │ ├── v1 │ │ │ │ │ │ ├── register_go_gen.cue │ │ │ │ │ │ └── types_go_gen.cue │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ ├── register_go_gen.cue │ │ │ │ │ │ └── types_go_gen.cue │ │ │ │ ├── extensions │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ ├── register_go_gen.cue │ │ │ │ │ │ └── types_go_gen.cue │ │ │ │ ├── flowcontrol │ │ │ │ │ ├── v1alpha1 │ │ │ │ │ │ ├── doc_go_gen.cue │ │ │ │ │ │ ├── register_go_gen.cue │ │ │ │ │ │ └── types_go_gen.cue │ │ │ │ │ ├── v1beta1 │ │ │ │ │ │ ├── doc_go_gen.cue │ │ │ │ │ │ ├── register_go_gen.cue │ │ │ │ │ │ └── types_go_gen.cue │ │ │ │ │ ├── v1beta2 │ │ │ │ │ │ ├── doc_go_gen.cue │ │ │ │ │ │ ├── register_go_gen.cue │ │ │ │ │ │ └── types_go_gen.cue │ │ │ │ │ └── v1beta3 │ │ │ │ │ │ ├── doc_go_gen.cue │ │ │ │ │ │ ├── register_go_gen.cue │ │ │ │ │ │ └── types_go_gen.cue │ │ │ │ ├── imagepolicy │ │ │ │ │ └── v1alpha1 │ │ │ │ │ │ ├── register_go_gen.cue │ │ │ │ │ │ └── types_go_gen.cue │ │ │ │ ├── networking │ │ │ │ │ ├── v1 │ │ │ │ │ │ ├── register_go_gen.cue │ │ │ │ │ │ ├── types_go_gen.cue │ │ │ │ │ │ └── well_known_annotations_go_gen.cue │ │ │ │ │ ├── v1alpha1 │ │ │ │ │ │ ├── register_go_gen.cue │ │ │ │ │ │ ├── types_go_gen.cue │ │ │ │ │ │ └── well_known_labels_go_gen.cue │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ ├── register_go_gen.cue │ │ │ │ │ │ ├── types_go_gen.cue │ │ │ │ │ │ └── well_known_annotations_go_gen.cue │ │ │ │ ├── node │ │ │ │ │ ├── v1 │ │ │ │ │ │ ├── register_go_gen.cue │ │ │ │ │ │ └── types_go_gen.cue │ │ │ │ │ ├── v1alpha1 │ │ │ │ │ │ ├── register_go_gen.cue │ │ │ │ │ │ └── types_go_gen.cue │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ ├── register_go_gen.cue │ │ │ │ │ │ └── types_go_gen.cue │ │ │ │ ├── policy │ │ │ │ │ ├── v1 │ │ │ │ │ │ ├── doc_go_gen.cue │ │ │ │ │ │ ├── register_go_gen.cue │ │ │ │ │ │ └── types_go_gen.cue │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ ├── doc_go_gen.cue │ │ │ │ │ │ ├── register_go_gen.cue │ │ │ │ │ │ └── types_go_gen.cue │ │ │ │ ├── rbac │ │ │ │ │ ├── v1 │ │ │ │ │ │ ├── register_go_gen.cue │ │ │ │ │ │ └── types_go_gen.cue │ │ │ │ │ ├── v1alpha1 │ │ │ │ │ │ ├── register_go_gen.cue │ │ │ │ │ │ └── types_go_gen.cue │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ ├── register_go_gen.cue │ │ │ │ │ │ └── types_go_gen.cue │ │ │ │ ├── resource │ │ │ │ │ └── v1alpha2 │ │ │ │ │ │ ├── doc_go_gen.cue │ │ │ │ │ │ ├── register_go_gen.cue │ │ │ │ │ │ └── types_go_gen.cue │ │ │ │ ├── scheduling │ │ │ │ │ ├── v1 │ │ │ │ │ │ ├── register_go_gen.cue │ │ │ │ │ │ └── types_go_gen.cue │ │ │ │ │ ├── v1alpha1 │ │ │ │ │ │ ├── register_go_gen.cue │ │ │ │ │ │ └── types_go_gen.cue │ │ │ │ │ └── v1beta1 │ │ │ │ │ │ ├── register_go_gen.cue │ │ │ │ │ │ └── types_go_gen.cue │ │ │ │ └── storage │ │ │ │ │ ├── v1 │ │ │ │ │ ├── register_go_gen.cue │ │ │ │ │ └── types_go_gen.cue │ │ │ │ │ ├── v1alpha1 │ │ │ │ │ ├── register_go_gen.cue │ │ │ │ │ └── types_go_gen.cue │ │ │ │ │ └── v1beta1 │ │ │ │ │ ├── register_go_gen.cue │ │ │ │ │ └── types_go_gen.cue │ │ │ │ └── apimachinery │ │ │ │ └── pkg │ │ │ │ ├── api │ │ │ │ ├── apitesting │ │ │ │ │ └── roundtrip │ │ │ │ │ │ ├── compatibility_go_gen.cue │ │ │ │ │ │ └── fuzz_norace_go_gen.cue │ │ │ │ ├── errors │ │ │ │ │ ├── doc_go_gen.cue │ │ │ │ │ └── errors_go_gen.cue │ │ │ │ ├── meta │ │ │ │ │ ├── doc_go_gen.cue │ │ │ │ │ ├── errors_go_gen.cue │ │ │ │ │ ├── firsthit_restmapper_go_gen.cue │ │ │ │ │ ├── interfaces_go_gen.cue │ │ │ │ │ ├── meta_go_gen.cue │ │ │ │ │ ├── multirestmapper_go_gen.cue │ │ │ │ │ ├── priority_go_gen.cue │ │ │ │ │ └── restmapper_go_gen.cue │ │ │ │ ├── resource │ │ │ │ │ ├── amount_go_gen.cue │ │ │ │ │ ├── math_go_gen.cue │ │ │ │ │ ├── quantity_go_gen.cue │ │ │ │ │ └── suffix_go_gen.cue │ │ │ │ └── validation │ │ │ │ │ ├── doc_go_gen.cue │ │ │ │ │ ├── generic_go_gen.cue │ │ │ │ │ └── objectmeta_go_gen.cue │ │ │ │ ├── apis │ │ │ │ └── meta │ │ │ │ │ └── v1 │ │ │ │ │ ├── duration_go_gen.cue │ │ │ │ │ ├── group_version_go_gen.cue │ │ │ │ │ ├── meta_go_gen.cue │ │ │ │ │ ├── micro_time_go_gen.cue │ │ │ │ │ ├── register_go_gen.cue │ │ │ │ │ ├── time_go_gen.cue │ │ │ │ │ ├── time_proto_go_gen.cue │ │ │ │ │ ├── types_go_gen.cue │ │ │ │ │ └── watch_go_gen.cue │ │ │ │ ├── runtime │ │ │ │ ├── allocator_go_gen.cue │ │ │ │ ├── codec_go_gen.cue │ │ │ │ ├── conversion_go_gen.cue │ │ │ │ ├── converter_go_gen.cue │ │ │ │ ├── doc_go_gen.cue │ │ │ │ ├── embedded_go_gen.cue │ │ │ │ ├── helper_go_gen.cue │ │ │ │ ├── interfaces_go_gen.cue │ │ │ │ ├── negotiate_go_gen.cue │ │ │ │ ├── schema │ │ │ │ │ ├── group_version_go_gen.cue │ │ │ │ │ └── interfaces_go_gen.cue │ │ │ │ ├── swagger_doc_generator_go_gen.cue │ │ │ │ ├── types_go_gen.cue │ │ │ │ └── types_proto_go_gen.cue │ │ │ │ ├── types │ │ │ │ ├── doc_go_gen.cue │ │ │ │ ├── namespacedname_go_gen.cue │ │ │ │ ├── nodename_go_gen.cue │ │ │ │ ├── patch_go_gen.cue │ │ │ │ └── uid_go_gen.cue │ │ │ │ ├── util │ │ │ │ └── intstr │ │ │ │ │ └── intstr_go_gen.cue │ │ │ │ └── watch │ │ │ │ ├── doc_go_gen.cue │ │ │ │ ├── filter_go_gen.cue │ │ │ │ ├── mux_go_gen.cue │ │ │ │ ├── streamwatcher_go_gen.cue │ │ │ │ └── watch_go_gen.cue │ │ └── module.cue │ │ ├── go.mod │ │ └── go.sum └── tf │ ├── .gitignore │ ├── etl.cue │ └── flow.cue └── test └── k8s-cue └── file.cue /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/README.md -------------------------------------------------------------------------------- /cue.mod/module.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/cue.mod/module.cue -------------------------------------------------------------------------------- /docs/adopting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/docs/adopting.md -------------------------------------------------------------------------------- /docs/design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/docs/design.md -------------------------------------------------------------------------------- /docs/developing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/docs/developing.md -------------------------------------------------------------------------------- /docs/yamhell.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/docs/yamhell.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/go.sum -------------------------------------------------------------------------------- /lib/kindorder.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/lib/kindorder.cue -------------------------------------------------------------------------------- /lib/toposort.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/lib/toposort.cue -------------------------------------------------------------------------------- /schema/dagger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/dagger.go -------------------------------------------------------------------------------- /schema/k8s/all.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/all.cue -------------------------------------------------------------------------------- /schema/k8s/usr/k8s.io/api/admission/v1/augment.cue: -------------------------------------------------------------------------------- 1 | package v1 2 | -------------------------------------------------------------------------------- /schema/k8s/usr/k8s.io/api/admission/v1beta1/augment.cue: -------------------------------------------------------------------------------- 1 | package v1beta1 2 | -------------------------------------------------------------------------------- /schema/k8s/usr/k8s.io/api/admissionregistration/v1/augment.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/usr/k8s.io/api/admissionregistration/v1/augment.cue -------------------------------------------------------------------------------- /schema/k8s/usr/k8s.io/api/admissionregistration/v1alpha1/augment.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/usr/k8s.io/api/admissionregistration/v1alpha1/augment.cue -------------------------------------------------------------------------------- /schema/k8s/usr/k8s.io/api/admissionregistration/v1beta1/augment.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/usr/k8s.io/api/admissionregistration/v1beta1/augment.cue -------------------------------------------------------------------------------- /schema/k8s/usr/k8s.io/api/apidiscovery/v2beta1/augment.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/usr/k8s.io/api/apidiscovery/v2beta1/augment.cue -------------------------------------------------------------------------------- /schema/k8s/usr/k8s.io/api/apiserverinternal/v1alpha1/augment.cue: -------------------------------------------------------------------------------- 1 | package v1alpha1 2 | -------------------------------------------------------------------------------- /schema/k8s/usr/k8s.io/api/apps/v1/augment.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/usr/k8s.io/api/apps/v1/augment.cue -------------------------------------------------------------------------------- /schema/k8s/usr/k8s.io/api/apps/v1beta1/augment.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/usr/k8s.io/api/apps/v1beta1/augment.cue -------------------------------------------------------------------------------- /schema/k8s/usr/k8s.io/api/apps/v1beta2/augment.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/usr/k8s.io/api/apps/v1beta2/augment.cue -------------------------------------------------------------------------------- /schema/k8s/usr/k8s.io/api/authentication/v1/augment.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/usr/k8s.io/api/authentication/v1/augment.cue -------------------------------------------------------------------------------- /schema/k8s/usr/k8s.io/api/authentication/v1alpha1/augment.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/usr/k8s.io/api/authentication/v1alpha1/augment.cue -------------------------------------------------------------------------------- /schema/k8s/usr/k8s.io/api/authentication/v1beta1/augment.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/usr/k8s.io/api/authentication/v1beta1/augment.cue -------------------------------------------------------------------------------- /schema/k8s/usr/k8s.io/api/authorization/v1/augment.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/usr/k8s.io/api/authorization/v1/augment.cue -------------------------------------------------------------------------------- /schema/k8s/usr/k8s.io/api/authorization/v1beta1/augment.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/usr/k8s.io/api/authorization/v1beta1/augment.cue -------------------------------------------------------------------------------- /schema/k8s/usr/k8s.io/api/autoscaling/v1/augment.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/usr/k8s.io/api/autoscaling/v1/augment.cue -------------------------------------------------------------------------------- /schema/k8s/usr/k8s.io/api/autoscaling/v2/augment.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/usr/k8s.io/api/autoscaling/v2/augment.cue -------------------------------------------------------------------------------- /schema/k8s/usr/k8s.io/api/autoscaling/v2beta1/augment.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/usr/k8s.io/api/autoscaling/v2beta1/augment.cue -------------------------------------------------------------------------------- /schema/k8s/usr/k8s.io/api/autoscaling/v2beta2/augment.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/usr/k8s.io/api/autoscaling/v2beta2/augment.cue -------------------------------------------------------------------------------- /schema/k8s/usr/k8s.io/api/batch/v1/augment.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/usr/k8s.io/api/batch/v1/augment.cue -------------------------------------------------------------------------------- /schema/k8s/usr/k8s.io/api/batch/v1beta1/augment.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/usr/k8s.io/api/batch/v1beta1/augment.cue -------------------------------------------------------------------------------- /schema/k8s/usr/k8s.io/api/certificates/v1/augment.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/usr/k8s.io/api/certificates/v1/augment.cue -------------------------------------------------------------------------------- /schema/k8s/usr/k8s.io/api/certificates/v1alpha1/augment.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/usr/k8s.io/api/certificates/v1alpha1/augment.cue -------------------------------------------------------------------------------- /schema/k8s/usr/k8s.io/api/certificates/v1beta1/augment.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/usr/k8s.io/api/certificates/v1beta1/augment.cue -------------------------------------------------------------------------------- /schema/k8s/usr/k8s.io/api/coordination/v1/augment.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/usr/k8s.io/api/coordination/v1/augment.cue -------------------------------------------------------------------------------- /schema/k8s/usr/k8s.io/api/coordination/v1beta1/augment.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/usr/k8s.io/api/coordination/v1beta1/augment.cue -------------------------------------------------------------------------------- /schema/k8s/usr/k8s.io/api/core/v1/augment.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/usr/k8s.io/api/core/v1/augment.cue -------------------------------------------------------------------------------- /schema/k8s/usr/k8s.io/api/discovery/v1/augment.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/usr/k8s.io/api/discovery/v1/augment.cue -------------------------------------------------------------------------------- /schema/k8s/usr/k8s.io/api/discovery/v1beta1/augment.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/usr/k8s.io/api/discovery/v1beta1/augment.cue -------------------------------------------------------------------------------- /schema/k8s/usr/k8s.io/api/events/v1/augment.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/usr/k8s.io/api/events/v1/augment.cue -------------------------------------------------------------------------------- /schema/k8s/usr/k8s.io/api/events/v1beta1/augment.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/usr/k8s.io/api/events/v1beta1/augment.cue -------------------------------------------------------------------------------- /schema/k8s/usr/k8s.io/api/extensions/v1beta1/augment.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/usr/k8s.io/api/extensions/v1beta1/augment.cue -------------------------------------------------------------------------------- /schema/k8s/usr/k8s.io/api/flowcontrol/v1alpha1/augment.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/usr/k8s.io/api/flowcontrol/v1alpha1/augment.cue -------------------------------------------------------------------------------- /schema/k8s/usr/k8s.io/api/flowcontrol/v1beta1/augment.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/usr/k8s.io/api/flowcontrol/v1beta1/augment.cue -------------------------------------------------------------------------------- /schema/k8s/usr/k8s.io/api/flowcontrol/v1beta2/augment.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/usr/k8s.io/api/flowcontrol/v1beta2/augment.cue -------------------------------------------------------------------------------- /schema/k8s/usr/k8s.io/api/flowcontrol/v1beta3/augment.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/usr/k8s.io/api/flowcontrol/v1beta3/augment.cue -------------------------------------------------------------------------------- /schema/k8s/usr/k8s.io/api/imagepolicy/v1alpha1/augment.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/usr/k8s.io/api/imagepolicy/v1alpha1/augment.cue -------------------------------------------------------------------------------- /schema/k8s/usr/k8s.io/api/networking/v1/augment.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/usr/k8s.io/api/networking/v1/augment.cue -------------------------------------------------------------------------------- /schema/k8s/usr/k8s.io/api/networking/v1alpha1/augment.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/usr/k8s.io/api/networking/v1alpha1/augment.cue -------------------------------------------------------------------------------- /schema/k8s/usr/k8s.io/api/networking/v1beta1/augment.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/usr/k8s.io/api/networking/v1beta1/augment.cue -------------------------------------------------------------------------------- /schema/k8s/usr/k8s.io/api/node/v1/augment.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/usr/k8s.io/api/node/v1/augment.cue -------------------------------------------------------------------------------- /schema/k8s/usr/k8s.io/api/node/v1alpha1/augment.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/usr/k8s.io/api/node/v1alpha1/augment.cue -------------------------------------------------------------------------------- /schema/k8s/usr/k8s.io/api/node/v1beta1/augment.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/usr/k8s.io/api/node/v1beta1/augment.cue -------------------------------------------------------------------------------- /schema/k8s/usr/k8s.io/api/policy/v1/augment.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/usr/k8s.io/api/policy/v1/augment.cue -------------------------------------------------------------------------------- /schema/k8s/usr/k8s.io/api/policy/v1beta1/augment.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/usr/k8s.io/api/policy/v1beta1/augment.cue -------------------------------------------------------------------------------- /schema/k8s/usr/k8s.io/api/rbac/v1/augment.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/usr/k8s.io/api/rbac/v1/augment.cue -------------------------------------------------------------------------------- /schema/k8s/usr/k8s.io/api/rbac/v1alpha1/augment.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/usr/k8s.io/api/rbac/v1alpha1/augment.cue -------------------------------------------------------------------------------- /schema/k8s/usr/k8s.io/api/rbac/v1beta1/augment.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/usr/k8s.io/api/rbac/v1beta1/augment.cue -------------------------------------------------------------------------------- /schema/k8s/usr/k8s.io/api/resource/v1alpha1/augment.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/usr/k8s.io/api/resource/v1alpha1/augment.cue -------------------------------------------------------------------------------- /schema/k8s/usr/k8s.io/api/scheduling/v1/augment.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/usr/k8s.io/api/scheduling/v1/augment.cue -------------------------------------------------------------------------------- /schema/k8s/usr/k8s.io/api/scheduling/v1alpha1/augment.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/usr/k8s.io/api/scheduling/v1alpha1/augment.cue -------------------------------------------------------------------------------- /schema/k8s/usr/k8s.io/api/scheduling/v1beta1/augment.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/usr/k8s.io/api/scheduling/v1beta1/augment.cue -------------------------------------------------------------------------------- /schema/k8s/usr/k8s.io/api/storage/v1/augment.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/usr/k8s.io/api/storage/v1/augment.cue -------------------------------------------------------------------------------- /schema/k8s/usr/k8s.io/api/storage/v1alpha1/augment.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/usr/k8s.io/api/storage/v1alpha1/augment.cue -------------------------------------------------------------------------------- /schema/k8s/usr/k8s.io/api/storage/v1beta1/augment.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/usr/k8s.io/api/storage/v1beta1/augment.cue -------------------------------------------------------------------------------- /schema/k8s/usr/k8s.io/apimachinery/pkg/util/intstr/augment.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/usr/k8s.io/apimachinery/pkg/util/intstr/augment.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/admission/v1/register_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/admission/v1/register_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/admission/v1/types_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/admission/v1/types_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/admission/v1beta1/register_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/admission/v1beta1/register_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/admission/v1beta1/types_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/admission/v1beta1/types_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/admissionregistration/v1/doc_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/admissionregistration/v1/doc_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/admissionregistration/v1/register_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/admissionregistration/v1/register_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/admissionregistration/v1/types_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/admissionregistration/v1/types_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/admissionregistration/v1alpha1/doc_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/admissionregistration/v1alpha1/doc_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/admissionregistration/v1alpha1/register_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/admissionregistration/v1alpha1/register_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/admissionregistration/v1alpha1/types_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/admissionregistration/v1alpha1/types_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/admissionregistration/v1beta1/doc_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/admissionregistration/v1beta1/doc_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/admissionregistration/v1beta1/register_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/admissionregistration/v1beta1/register_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/admissionregistration/v1beta1/types_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/admissionregistration/v1beta1/types_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/apidiscovery/v2beta1/register_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/apidiscovery/v2beta1/register_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/apidiscovery/v2beta1/types_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/apidiscovery/v2beta1/types_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/apiserverinternal/v1alpha1/doc_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/apiserverinternal/v1alpha1/doc_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/apiserverinternal/v1alpha1/register_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/apiserverinternal/v1alpha1/register_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/apiserverinternal/v1alpha1/types_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/apiserverinternal/v1alpha1/types_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/apps/v1/register_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/apps/v1/register_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/apps/v1/types_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/apps/v1/types_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/apps/v1beta1/register_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/apps/v1beta1/register_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/apps/v1beta1/types_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/apps/v1beta1/types_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/apps/v1beta2/register_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/apps/v1beta2/register_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/apps/v1beta2/types_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/apps/v1beta2/types_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/authentication/v1/register_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/authentication/v1/register_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/authentication/v1/types_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/authentication/v1/types_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/authentication/v1alpha1/register_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/authentication/v1alpha1/register_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/authentication/v1alpha1/types_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/authentication/v1alpha1/types_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/authentication/v1beta1/register_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/authentication/v1beta1/register_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/authentication/v1beta1/types_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/authentication/v1beta1/types_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/authorization/v1/register_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/authorization/v1/register_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/authorization/v1/types_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/authorization/v1/types_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/authorization/v1beta1/register_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/authorization/v1beta1/register_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/authorization/v1beta1/types_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/authorization/v1beta1/types_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/autoscaling/v1/register_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/autoscaling/v1/register_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/autoscaling/v1/types_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/autoscaling/v1/types_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/autoscaling/v2/register_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/autoscaling/v2/register_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/autoscaling/v2/types_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/autoscaling/v2/types_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/autoscaling/v2beta1/register_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/autoscaling/v2beta1/register_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/autoscaling/v2beta1/types_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/autoscaling/v2beta1/types_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/autoscaling/v2beta2/register_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/autoscaling/v2beta2/register_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/autoscaling/v2beta2/types_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/autoscaling/v2beta2/types_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/batch/v1/register_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/batch/v1/register_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/batch/v1/types_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/batch/v1/types_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/batch/v1beta1/register_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/batch/v1beta1/register_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/batch/v1beta1/types_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/batch/v1beta1/types_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/certificates/v1/register_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/certificates/v1/register_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/certificates/v1/types_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/certificates/v1/types_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/certificates/v1alpha1/register_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/certificates/v1alpha1/register_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/certificates/v1alpha1/types_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/certificates/v1alpha1/types_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/certificates/v1beta1/register_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/certificates/v1beta1/register_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/certificates/v1beta1/types_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/certificates/v1beta1/types_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/coordination/v1/register_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/coordination/v1/register_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/coordination/v1/types_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/coordination/v1/types_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/coordination/v1beta1/register_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/coordination/v1beta1/register_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/coordination/v1beta1/types_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/coordination/v1beta1/types_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/core/v1/annotation_key_constants_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/core/v1/annotation_key_constants_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/core/v1/doc_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/core/v1/doc_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/core/v1/register_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/core/v1/register_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/core/v1/types_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/core/v1/types_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/core/v1/well_known_labels_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/core/v1/well_known_labels_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/core/v1/well_known_taints_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/core/v1/well_known_taints_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/discovery/v1/register_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/discovery/v1/register_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/discovery/v1/types_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/discovery/v1/types_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/discovery/v1/well_known_labels_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/discovery/v1/well_known_labels_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/discovery/v1beta1/register_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/discovery/v1beta1/register_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/discovery/v1beta1/types_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/discovery/v1beta1/types_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/discovery/v1beta1/well_known_labels_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/discovery/v1beta1/well_known_labels_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/events/v1/register_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/events/v1/register_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/events/v1/types_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/events/v1/types_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/events/v1beta1/register_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/events/v1beta1/register_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/events/v1beta1/types_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/events/v1beta1/types_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/extensions/v1beta1/register_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/extensions/v1beta1/register_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/extensions/v1beta1/types_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/extensions/v1beta1/types_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/flowcontrol/v1alpha1/doc_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/flowcontrol/v1alpha1/doc_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/flowcontrol/v1alpha1/register_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/flowcontrol/v1alpha1/register_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/flowcontrol/v1alpha1/types_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/flowcontrol/v1alpha1/types_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/flowcontrol/v1beta1/doc_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/flowcontrol/v1beta1/doc_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/flowcontrol/v1beta1/register_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/flowcontrol/v1beta1/register_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/flowcontrol/v1beta1/types_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/flowcontrol/v1beta1/types_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/flowcontrol/v1beta2/doc_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/flowcontrol/v1beta2/doc_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/flowcontrol/v1beta2/register_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/flowcontrol/v1beta2/register_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/flowcontrol/v1beta2/types_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/flowcontrol/v1beta2/types_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/flowcontrol/v1beta3/doc_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/flowcontrol/v1beta3/doc_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/flowcontrol/v1beta3/register_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/flowcontrol/v1beta3/register_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/flowcontrol/v1beta3/types_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/flowcontrol/v1beta3/types_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/imagepolicy/v1alpha1/register_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/imagepolicy/v1alpha1/register_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/imagepolicy/v1alpha1/types_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/imagepolicy/v1alpha1/types_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/networking/v1/register_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/networking/v1/register_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/networking/v1/types_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/networking/v1/types_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/networking/v1/well_known_annotations_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/networking/v1/well_known_annotations_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/networking/v1alpha1/register_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/networking/v1alpha1/register_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/networking/v1alpha1/types_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/networking/v1alpha1/types_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/networking/v1alpha1/well_known_labels_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/networking/v1alpha1/well_known_labels_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/networking/v1beta1/register_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/networking/v1beta1/register_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/networking/v1beta1/types_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/networking/v1beta1/types_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/networking/v1beta1/well_known_annotations_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/networking/v1beta1/well_known_annotations_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/node/v1/register_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/node/v1/register_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/node/v1/types_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/node/v1/types_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/node/v1alpha1/register_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/node/v1alpha1/register_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/node/v1alpha1/types_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/node/v1alpha1/types_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/node/v1beta1/register_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/node/v1beta1/register_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/node/v1beta1/types_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/node/v1beta1/types_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/policy/v1/doc_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/policy/v1/doc_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/policy/v1/register_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/policy/v1/register_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/policy/v1/types_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/policy/v1/types_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/policy/v1beta1/doc_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/policy/v1beta1/doc_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/policy/v1beta1/register_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/policy/v1beta1/register_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/policy/v1beta1/types_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/policy/v1beta1/types_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/rbac/v1/register_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/rbac/v1/register_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/rbac/v1/types_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/rbac/v1/types_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/rbac/v1alpha1/register_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/rbac/v1alpha1/register_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/rbac/v1alpha1/types_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/rbac/v1alpha1/types_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/rbac/v1beta1/register_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/rbac/v1beta1/register_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/rbac/v1beta1/types_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/rbac/v1beta1/types_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/resource/v1alpha2/doc_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/resource/v1alpha2/doc_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/resource/v1alpha2/register_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/resource/v1alpha2/register_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/resource/v1alpha2/types_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/resource/v1alpha2/types_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/scheduling/v1/register_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/scheduling/v1/register_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/scheduling/v1/types_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/scheduling/v1/types_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/scheduling/v1alpha1/register_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/scheduling/v1alpha1/register_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/scheduling/v1alpha1/types_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/scheduling/v1alpha1/types_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/scheduling/v1beta1/register_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/scheduling/v1beta1/register_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/scheduling/v1beta1/types_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/scheduling/v1beta1/types_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/storage/v1/register_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/storage/v1/register_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/storage/v1/types_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/storage/v1/types_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/storage/v1alpha1/register_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/storage/v1alpha1/register_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/storage/v1alpha1/types_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/storage/v1alpha1/types_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/storage/v1beta1/register_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/storage/v1beta1/register_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/api/storage/v1beta1/types_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/api/storage/v1beta1/types_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/api/apitesting/roundtrip/compatibility_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/api/apitesting/roundtrip/compatibility_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/api/apitesting/roundtrip/fuzz_norace_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/api/apitesting/roundtrip/fuzz_norace_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/api/errors/doc_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/api/errors/doc_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/api/errors/errors_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/api/errors/errors_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/api/meta/doc_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/api/meta/doc_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/api/meta/errors_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/api/meta/errors_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/api/meta/firsthit_restmapper_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/api/meta/firsthit_restmapper_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/api/meta/interfaces_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/api/meta/interfaces_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/api/meta/meta_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/api/meta/meta_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/api/meta/multirestmapper_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/api/meta/multirestmapper_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/api/meta/priority_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/api/meta/priority_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/api/meta/restmapper_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/api/meta/restmapper_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/api/resource/amount_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/api/resource/amount_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/api/resource/math_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/api/resource/math_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/api/resource/quantity_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/api/resource/quantity_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/api/resource/suffix_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/api/resource/suffix_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/api/validation/doc_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/api/validation/doc_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/api/validation/generic_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/api/validation/generic_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/api/validation/objectmeta_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/api/validation/objectmeta_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/apis/meta/v1/duration_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/apis/meta/v1/duration_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/apis/meta/v1/group_version_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/apis/meta/v1/group_version_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/apis/meta/v1/meta_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/apis/meta/v1/meta_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/apis/meta/v1/micro_time_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/apis/meta/v1/micro_time_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/apis/meta/v1/register_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/apis/meta/v1/register_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/apis/meta/v1/time_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/apis/meta/v1/time_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/apis/meta/v1/time_proto_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/apis/meta/v1/time_proto_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/apis/meta/v1/types_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/apis/meta/v1/types_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/apis/meta/v1/watch_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/apis/meta/v1/watch_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/runtime/allocator_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/runtime/allocator_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/runtime/codec_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/runtime/codec_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/runtime/conversion_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/runtime/conversion_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/runtime/converter_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/runtime/converter_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/runtime/doc_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/runtime/doc_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/runtime/embedded_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/runtime/embedded_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/runtime/helper_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/runtime/helper_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/runtime/interfaces_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/runtime/interfaces_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/runtime/negotiate_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/runtime/negotiate_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/runtime/schema/group_version_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/runtime/schema/group_version_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/runtime/schema/interfaces_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/runtime/schema/interfaces_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/runtime/swagger_doc_generator_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/runtime/swagger_doc_generator_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/runtime/types_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/runtime/types_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/runtime/types_proto_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/runtime/types_proto_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/types/doc_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/types/doc_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/types/namespacedname_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/types/namespacedname_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/types/nodename_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/types/nodename_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/types/patch_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/types/patch_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/types/uid_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/types/uid_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/util/intstr/intstr_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/util/intstr/intstr_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/watch/doc_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/watch/doc_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/watch/filter_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/watch/filter_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/watch/mux_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/watch/mux_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/watch/streamwatcher_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/watch/streamwatcher_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/watch/watch_go_gen.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/cue.mod/gen/k8s.io/apimachinery/pkg/watch/watch_go_gen.cue -------------------------------------------------------------------------------- /schema/k8s/v0.27/cue.mod/module.cue: -------------------------------------------------------------------------------- 1 | module: "hof.io/hack" 2 | -------------------------------------------------------------------------------- /schema/k8s/v0.27/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/go.mod -------------------------------------------------------------------------------- /schema/k8s/v0.27/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/k8s/v0.27/go.sum -------------------------------------------------------------------------------- /schema/tf/.gitignore: -------------------------------------------------------------------------------- 1 | /providers* 2 | -------------------------------------------------------------------------------- /schema/tf/etl.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/tf/etl.cue -------------------------------------------------------------------------------- /schema/tf/flow.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/schema/tf/flow.cue -------------------------------------------------------------------------------- /test/k8s-cue/file.cue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hofstadter-io/cuelm/HEAD/test/k8s-cue/file.cue --------------------------------------------------------------------------------