Skip to content

Commit

Permalink
default deployMessagingService to true
Browse files Browse the repository at this point in the history
  • Loading branch information
nasark committed Jan 3, 2024
1 parent 2a5faca commit 4d4fdbf
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ func databaseVolumeCapacity(cr *miqv1alpha1.ManageIQ) string {

func deployMessagingService(cr *miqv1alpha1.ManageIQ) bool {
if cr.Spec.DeployMessagingService == nil {
return false
return true
} else {
return *cr.Spec.DeployMessagingService
}
Expand Down
2 changes: 1 addition & 1 deletion manageiq-operator/api/v1alpha1/manageiq_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ type ManageIQSpec struct {
// +optional
DatabaseVolumeCapacity string `json:"databaseVolumeCapacity,omitempty"`

// Flag to indicate if Kafka and Zookeeper should be deployed (default: false)
// Deprecated: Flag to indicate if Kafka and Zookeeper should be deployed (default: true)
// +optional
DeployMessagingService *bool `json:"deployMessagingService,omitempty"`

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,8 @@ spec:
description: 'Database volume size (default: 15Gi)'
type: string
deployMessagingService:
description: 'Flag to indicate if Kafka and Zookeeper should be deployed
(default: false)'
description: 'Deprecated: Flag to indicate if Kafka and Zookeeper
should be deployed (default: true)'
type: boolean
enableApplicationLocalLogin:
description: 'Flag to allow logging into the application without SSO
Expand Down

0 comments on commit 4d4fdbf

Please sign in to comment.