You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+3
Original file line number
Diff line number
Diff line change
@@ -76,3 +76,6 @@ Other supported options are:
76
76
* when set to `true`, the native openapi schemas will be used for Integer types instead of Solo wrappers that add Kubernetes extension headers to the schema to treat int as strings.
77
77
*`disable_kube_markers`
78
78
* when set to `true`, kubebuilder markers and validations such as PreserveUnknownFields, MinItems, default, and all CEL rules will be omitted from the OpenAPI schema. The Type and Required markers will be maintained.
79
+
*`ignored_kube_marker_substrings`
80
+
* when set, this list of substrings will be used to identify kubebuilder markers to ignore. When multiple are
81
+
supplied, this will function as a logical OR i.e. any rule which contains a provided substring will be ignored
@@ -121,6 +122,10 @@ type openapiGenerator struct {
121
122
// If set to true, kubebuilder markers and validations such as PreserveUnknownFields, MinItems, default, and all CEL rules will be omitted from the OpenAPI schema.
122
123
// The Type and Required markers will be maintained.
123
124
disableKubeMarkersbool
125
+
126
+
// when set, this list of substrings will be used to identify kubebuilder markers to ignore. When multiple are
127
+
// supplied, this will function as a logical OR i.e. any rule which contains a provided substring will be ignored
0 commit comments