File tree Expand file tree Collapse file tree 2 files changed +7
-0
lines changed
Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -70,15 +70,18 @@ type Mapfile struct {
7070type BaseOptions struct {
7171 // IncludeIngress dictates whether to deploy an Ingress or ensure none exists.
7272 // +kubebuilder:default:=true
73+ // +kubebuilder:validation:Optional
7374 IncludeIngress bool `json:"includeIngress"`
7475
7576 // AutomaticCasing enables automatic conversion from snake_case to camelCase.
7677 // +kubebuilder:default:=true
78+ // +kubebuilder:validation:Optional
7779 AutomaticCasing bool `json:"automaticCasing"`
7880
7981 // Whether to prefetch data from blob storage, and store it on the local filesystem.
8082 // If `false`, the data will be served directly out of blob storage
8183 // +kubebuilder:default:=true
84+ // +kubebuilder:validation:Optional
8285 PrefetchData bool `json:"prefetchData"`
8386}
8487
Original file line number Diff line number Diff line change @@ -312,18 +312,22 @@ type WMSOptions struct {
312312
313313 // ValidateRequests enables request validation against the service schema.
314314 // +kubebuilder:default:=true
315+ // +kubebuilder:validation:Optional
315316 ValidateRequests bool `json:"validateRequests"`
316317
317318 // RewriteGroupToDataLayers merges group layers into individual data layers.
318319 // +kubebuilder:default:=false
320+ // +kubebuilder:validation:Optional
319321 RewriteGroupToDataLayers bool `json:"rewriteGroupToDataLayers"`
320322
321323 // DisableWebserviceProxy disables the built-in proxy for external web services.
322324 // +kubebuilder:default:=false
325+ // +kubebuilder:validation:Optional
323326 DisableWebserviceProxy bool `json:"disableWebserviceProxy"`
324327
325328 // ValidateChildStyleNameEqual ensures child style names match the parent style.
326329 // +kubebuilder:default=false
330+ // +kubebuilder:validation:Optional
327331 ValidateChildStyleNameEqual bool `json:"validateChildStyleNameEqual"`
328332}
329333
You can’t perform that action at this time.
0 commit comments