Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Configure Dashboard log level #1761

Merged
merged 1 commit into from
Oct 4, 2023
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
5 changes: 5 additions & 0 deletions api/v2/checluster_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -311,6 +311,11 @@ type CheServer struct {
// Configuration settings related to the Dashaboard used by the Che installation.
// +k8s:openapi-gen=true
type Dashboard struct {
// The log level for the Dashboard.
// +optional
// +kubebuilder:default:="ERROR"
// +kubebuilder:validation:Enum=DEBUG;INFO;WARN;ERROR;FATAL;TRACE;SILENT
LogLevel string `json:"logLevel,omitempty"`
// Deployment override options.
// +optional
Deployment *Deployment `json:"deployment,omitempty"`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ metadata:
operators.operatorframework.io/project_layout: go.kubebuilder.io/v3
repository: https://github.com/eclipse-che/che-operator
support: Eclipse Foundation
name: eclipse-che.v7.76.0-810.next
name: eclipse-che.v7.76.0-811.next
namespace: placeholder
spec:
apiservicedefinitions: {}
Expand Down Expand Up @@ -1234,7 +1234,7 @@ spec:
minKubeVersion: 1.19.0
provider:
name: Eclipse Foundation
version: 7.76.0-810.next
version: 7.76.0-811.next
webhookdefinitions:
- admissionReviewVersions:
- v1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4623,6 +4623,18 @@ spec:
description: Warning message displayed on the user dashboard.
type: string
type: object
logLevel:
default: ERROR
description: The log level for the Dashboard.
enum:
- DEBUG
- INFO
- WARN
- ERROR
- FATAL
- TRACE
- SILENT
type: string
type: object
devWorkspace:
description: DevWorkspace Operator configuration.
Expand Down
12 changes: 12 additions & 0 deletions config/crd/bases/org.eclipse.che_checlusters.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4488,6 +4488,18 @@ spec:
description: Warning message displayed on the user dashboard.
type: string
type: object
logLevel:
default: ERROR
description: The log level for the Dashboard.
enum:
- DEBUG
- INFO
- WARN
- ERROR
- FATAL
- TRACE
- SILENT
type: string
type: object
devWorkspace:
description: DevWorkspace Operator configuration.
Expand Down
12 changes: 12 additions & 0 deletions deploy/deployment/kubernetes/combined.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4507,6 +4507,18 @@ spec:
description: Warning message displayed on the user dashboard.
type: string
type: object
logLevel:
default: ERROR
description: The log level for the Dashboard.
enum:
- DEBUG
- INFO
- WARN
- ERROR
- FATAL
- TRACE
- SILENT
type: string
type: object
devWorkspace:
description: DevWorkspace Operator configuration.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4502,6 +4502,18 @@ spec:
description: Warning message displayed on the user dashboard.
type: string
type: object
logLevel:
default: ERROR
description: The log level for the Dashboard.
enum:
- DEBUG
- INFO
- WARN
- ERROR
- FATAL
- TRACE
- SILENT
type: string
type: object
devWorkspace:
description: DevWorkspace Operator configuration.
Expand Down
12 changes: 12 additions & 0 deletions deploy/deployment/openshift/combined.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4507,6 +4507,18 @@ spec:
description: Warning message displayed on the user dashboard.
type: string
type: object
logLevel:
default: ERROR
description: The log level for the Dashboard.
enum:
- DEBUG
- INFO
- WARN
- ERROR
- FATAL
- TRACE
- SILENT
type: string
type: object
devWorkspace:
description: DevWorkspace Operator configuration.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4502,6 +4502,18 @@ spec:
description: Warning message displayed on the user dashboard.
type: string
type: object
logLevel:
default: ERROR
description: The log level for the Dashboard.
enum:
- DEBUG
- INFO
- WARN
- ERROR
- FATAL
- TRACE
- SILENT
type: string
type: object
devWorkspace:
description: DevWorkspace Operator configuration.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4502,6 +4502,18 @@ spec:
description: Warning message displayed on the user dashboard.
type: string
type: object
logLevel:
default: ERROR
description: The log level for the Dashboard.
enum:
- DEBUG
- INFO
- WARN
- ERROR
- FATAL
- TRACE
- SILENT
type: string
type: object
devWorkspace:
description: DevWorkspace Operator configuration.
Expand Down
Loading