Skip to content

Commit

Permalink
deploy messaging by default
Browse files Browse the repository at this point in the history
  • Loading branch information
nasark committed Jan 4, 2024
1 parent 09da4c7 commit 3ce2e06
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 9 deletions.
5 changes: 1 addition & 4 deletions images/manageiq-orchestrator/container-assets/entrypoint
Original file line number Diff line number Diff line change
Expand Up @@ -116,10 +116,7 @@ EOS

check_svc_status ${MEMCACHED_SERVICE_HOST} ${MEMCACHED_SERVICE_PORT}
check_svc_status ${database_hostname} ${database_port}

if [ -n "$MESSAGING_HOSTNAME" ] && [ -n "$MESSAGING_PORT" ]; then
check_svc_status ${MESSAGING_HOSTNAME} ${MESSAGING_PORT}
fi
check_svc_status ${MESSAGING_HOSTNAME} ${MESSAGING_PORT}

check_deployment_status || exit 1

Expand Down
6 changes: 1 addition & 5 deletions manageiq-operator/api/v1alpha1/helpers/miq-components/cr.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,7 @@ func databaseVolumeCapacity(cr *miqv1alpha1.ManageIQ) string {
}

func deployMessagingService(cr *miqv1alpha1.ManageIQ) bool {
if cr.Spec.DeployMessagingService == nil {
return true
} else {
return *cr.Spec.DeployMessagingService
}
return true
}

func enableApplicationLocalLogin(cr *miqv1alpha1.ManageIQ) bool {
Expand Down

0 comments on commit 3ce2e06

Please sign in to comment.