diff --git a/codegen/collector/executor.go b/codegen/collector/executor.go index 31ba7cea..4f12f1c6 100644 --- a/codegen/collector/executor.go +++ b/codegen/collector/executor.go @@ -84,7 +84,7 @@ type OpenApiProtocExecutor struct { // Type and Required markers will be included regardless DisableKubeMarkers bool - // A list of kube markers that should be ignored while generating an open api schema + // A list of kube markers that should be ignored while generating an open api schema. If empty, no kube markers will be ignored. IgnoredKubeMarkers []string } diff --git a/codegen/proto/schemagen/generator.go b/codegen/proto/schemagen/generator.go index 6c91285a..2c5308e8 100644 --- a/codegen/proto/schemagen/generator.go +++ b/codegen/proto/schemagen/generator.go @@ -23,7 +23,7 @@ type ValidationSchemaOptions struct { // Default: false DisableKubeMarkers bool - // A list of kube markers that should be ignored while generating an open api schema + // A list of kube markers that should be ignored while generating an open api schema. If empty, no kube markers will be ignored. IgnoredKubeMarkers []string }