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
|
|
@ -17511,11 +17511,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.";
|
||||
|
|
@ -17603,7 +17603,7 @@ let
|
|||
};
|
||||
"not" = mkOption {
|
||||
description = "";
|
||||
type = (types.nullOr (submoduleOf "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaProps"));
|
||||
type = types.unspecified;
|
||||
};
|
||||
"nullable" = mkOption {
|
||||
description = "";
|
||||
|
|
@ -17611,7 +17611,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 = "";
|
||||
|
|
@ -18215,11 +18215,11 @@ let
|
|||
};
|
||||
"allOf" = mkOption {
|
||||
description = "";
|
||||
type = (types.nullOr (types.listOf (submoduleOf "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaProps")));
|
||||
type = types.unspecified;
|
||||
};
|
||||
"anyOf" = mkOption {
|
||||
description = "";
|
||||
type = (types.nullOr (types.listOf (submoduleOf "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.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. CustomResourceDefinitions with defaults must be created using the v1 (or newer) CustomResourceDefinition API.";
|
||||
|
|
@ -18307,7 +18307,7 @@ let
|
|||
};
|
||||
"not" = mkOption {
|
||||
description = "";
|
||||
type = (types.nullOr (submoduleOf "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaProps"));
|
||||
type = types.unspecified;
|
||||
};
|
||||
"nullable" = mkOption {
|
||||
description = "";
|
||||
|
|
@ -18315,7 +18315,7 @@ let
|
|||
};
|
||||
"oneOf" = mkOption {
|
||||
description = "";
|
||||
type = (types.nullOr (types.listOf (submoduleOf "io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1beta1.JSONSchemaProps")));
|
||||
type = types.unspecified;
|
||||
};
|
||||
"pattern" = mkOption {
|
||||
description = "";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue