Skip to content

Commit

Permalink
Merge pull request #283 from IBM/disable-od
Browse files Browse the repository at this point in the history
Disable od
  • Loading branch information
DanRoseus authored May 18, 2022
2 parents 1738d86 + 6238cd3 commit 1248f99
Showing 1 changed file with 12 additions and 8 deletions.
20 changes: 12 additions & 8 deletions products/bash/setup-demos.sh
Original file line number Diff line number Diff line change
Expand Up @@ -61,19 +61,23 @@ MISSING_PARAMS="false"
MISSING_PREREQS="false"

# cognitive car repair demo list
COGNITIVE_CAR_REPAIR_PRODUCTS_LIST=("aceDashboard" "aceDesigner" "apic" "assetRepo" "tracing")
# COGNITIVE_CAR_REPAIR_PRODUCTS_LIST=("aceDashboard" "aceDesigner" "apic" "assetRepo" "tracing")
COGNITIVE_CAR_REPAIR_PRODUCTS_LIST=("aceDashboard" "aceDesigner" "apic" "assetRepo")
COGNITIVE_CAR_REPAIR_ADDONS_LIST=()
# driveway dent deletion demo list
DRIVEWAY_DENT_DELETION_PRODUCTS_LIST=("aceDashboard" "apic" "tracing")
# DRIVEWAY_DENT_DELETION_PRODUCTS_LIST=("aceDashboard" "apic" "tracing")
DRIVEWAY_DENT_DELETION_PRODUCTS_LIST=("aceDashboard" "apic")
DRIVEWAY_DENT_DELETION_ADDONS_LIST=("postgres" "ocpPipelines")
# event insurance demo list
EVENT_ENABLED_INSURANCE_PRODUCTS_LIST=("aceDashboard" "apic" "eventStreams" "tracing")
# EVENT_ENABLED_INSURANCE_PRODUCTS_LIST=("aceDashboard" "apic" "eventStreams" "tracing")
EVENT_ENABLED_INSURANCE_PRODUCTS_LIST=("aceDashboard" "apic" "eventStreams")
EVENT_ENABLED_INSURANCE_ADDONS_LIST=("postgres" "ocpPipelines")
# mapping assist demo list
MAPPING_ASSIST_PRODUCTS_LIST=("aceDesigner")
MAPPING_ASSIST_ADDONS_LIST=()
# ace weather chatbot demo list
ACE_WEATHER_CHATBOT_PRODUCTS_LIST=("aceDashboard" "aceDesigner" "apic" "assetRepo" "tracing")
# ACE_WEATHER_CHATBOT_PRODUCTS_LIST=("aceDashboard" "aceDesigner" "apic" "assetRepo" "tracing")
ACE_WEATHER_CHATBOT_PRODUCTS_LIST=("aceDashboard" "aceDesigner" "apic" "assetRepo")
ACE_WEATHER_CHATBOT_ADDONS_LIST=()

# Default release name variables
Expand Down Expand Up @@ -426,16 +430,16 @@ for DEMO in $(echo $REQUIRED_DEMOS_JSON | jq -r 'keys[]'); do
aceDesigner
apic
assetRepo
tracing
'
# tracing
ADDONS_FOR_DEMO=''
;;
drivewayDentDeletion)
PRODUCTS_FOR_DEMO='
aceDashboard
apic
tracing
'
# tracing

# Disabled as we no longer want a separate namespace for test. The following is an example
# of how this could work if we want to re-add this support later.
Expand All @@ -452,8 +456,8 @@ for DEMO in $(echo $REQUIRED_DEMOS_JSON | jq -r 'keys[]'); do
aceDashboard
apic
eventStreams
tracing
'
# tracing
ADDONS_FOR_DEMO='
postgres
ocpPipelines
Expand All @@ -471,8 +475,8 @@ for DEMO in $(echo $REQUIRED_DEMOS_JSON | jq -r 'keys[]'); do
aceDesigner
apic
assetRepo
tracing
'
# tracing
ADDONS_FOR_DEMO=''
;;
*)
Expand Down

0 comments on commit 1248f99

Please sign in to comment.