Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions api/crds/manifests/openmcp.cloud_clusterproviders.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2071,6 +2071,9 @@ spec:
- DEBUG
- INFO
- ERROR
- debug
- info
- error
type: string
required:
- image
Expand Down
3 changes: 3 additions & 0 deletions api/crds/manifests/openmcp.cloud_platformservices.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2071,6 +2071,9 @@ spec:
- DEBUG
- INFO
- ERROR
- debug
- info
- error
type: string
required:
- image
Expand Down
3 changes: 3 additions & 0 deletions api/crds/manifests/openmcp.cloud_serviceproviders.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2071,6 +2071,9 @@ spec:
- DEBUG
- INFO
- ERROR
- debug
- info
- error
type: string
required:
- image
Expand Down
2 changes: 1 addition & 1 deletion api/provider/v1alpha1/deployment_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ type DeploymentSpec struct {
Env []EnvVar `json:"env,omitempty" patchStrategy:"merge" patchMergeKey:"name"`

// Verbosity is the verbosity level of the provider.
// +kubebuilder:validation:Enum=DEBUG;INFO;ERROR
// +kubebuilder:validation:Enum=DEBUG;INFO;ERROR;debug;info;error
// +kubebuilder:default=INFO
Verbosity string `json:"verbosity,omitempty"`

Expand Down