mirror of
https://github.com/TECHNOFAB11/kubenix.git
synced 2025-12-12 16:10:05 +01:00
prevent self-referential types in generated modules
This commit is contained in:
parent
8fec3d8f9e
commit
6dfa8e81c7
7 changed files with 44 additions and 38 deletions
|
|
@ -15705,11 +15705,11 @@ let
|
|||
};
|
||||
"allOf" = mkOption {
|
||||
description = "";
|
||||
type = (types.nullOr (types.listOf (submoduleOf "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaProps")));
|
||||
type = types.unspecified;
|
||||
};
|
||||
"anyOf" = mkOption {
|
||||
description = "";
|
||||
type = (types.nullOr (types.listOf (submoduleOf "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaProps")));
|
||||
type = types.unspecified;
|
||||
};
|
||||
"default" = mkOption {
|
||||
description = "default is a default value for undefined object fields. Defaulting is a beta feature under the CustomResourceDefaulting feature gate. Defaulting requires spec.preserveUnknownFields to be false.";
|
||||
|
|
@ -15797,7 +15797,7 @@ let
|
|||
};
|
||||
"not" = mkOption {
|
||||
description = "";
|
||||
type = (types.nullOr (submoduleOf "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaProps"));
|
||||
type = types.unspecified;
|
||||
};
|
||||
"nullable" = mkOption {
|
||||
description = "";
|
||||
|
|
@ -15805,7 +15805,7 @@ let
|
|||
};
|
||||
"oneOf" = mkOption {
|
||||
description = "";
|
||||
type = (types.nullOr (types.listOf (submoduleOf "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaProps")));
|
||||
type = types.unspecified;
|
||||
};
|
||||
"pattern" = mkOption {
|
||||
description = "";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue