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
// LogFormat refers to the log format used by the ApplicationSet component. Defaults to ArgoCDDefaultLogFormat if not configured. Valid options are text or json.
221
224
// +kubebuilder:validation:Enum=text;json
222
-
LogFormatstring`json:"logformat,omitempty"`
225
+
LogFormatstring`json:"logFormat,omitempty"`
223
226
}
224
227
225
228
func (a*ArgoCDApplicationSet) IsEnabled() bool {
@@ -429,9 +432,12 @@ type ArgoCDNotifications struct {
429
432
// LogLevel describes the log level that should be used by the argocd-notifications. Defaults to ArgoCDDefaultLogLevel if not set. Valid options are debug,info, error, and warn.
430
433
LogLevelstring`json:"logLevel,omitempty"`
431
434
435
+
// Deprecated: use LogFormat instead.
436
+
Logformatstring`json:"logformat,omitempty"`
437
+
432
438
// LogFormat refers to the log format used by the argocd-notifications. Defaults to ArgoCDDefaultLogFormat if not configured. Valid options are text or json.
433
439
// +kubebuilder:validation:Enum=text;json
434
-
LogFormatstring`json:"logformat,omitempty"`
440
+
LogFormatstring`json:"logFormat,omitempty"`
435
441
}
436
442
437
443
// ArgoCDPrometheusSpec defines the desired state for the Prometheus component.
0 commit comments