diff options
author | Riccardo Pittau <elfosardo@gmail.com> | 2020-02-27 15:30:41 +0100 |
---|---|---|
committer | Riccardo Pittau <elfosardo@gmail.com> | 2020-03-26 09:45:00 +0100 |
commit | bc654814f8e5a466b6feb18ee2c470b7dd0dbd9a (patch) | |
tree | 47475ab7260a45b909825a113def95bafcac9d60 /devstack | |
parent | 774aee28bca5614754c751014b07240b6bfa930d (diff) | |
download | ironic-bc654814f8e5a466b6feb18ee2c470b7dd0dbd9a.tar.gz |
Default IRONIC_RAMDISK_TYPE to dib
We limit the use of tinyipa to the most intensive jobs:
standalone
grenade
multinode
Also leaving ironic-tempest-ipa-wholedisk-bios-agent_ipmitool-tinyipa
running for now as there could be an issue with the
ironic-python-agent
Story: 2007356
Task: 38908
Change-Id: Ieb1ea1dbeeb68b15e9281d154358336006b62214
Diffstat (limited to 'devstack')
-rw-r--r-- | devstack/lib/ironic | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/devstack/lib/ironic b/devstack/lib/ironic index e0ec31701..e2545d9ea 100644 --- a/devstack/lib/ironic +++ b/devstack/lib/ironic @@ -238,7 +238,7 @@ IRONIC_BUILD_DEPLOY_RAMDISK=$(trueorfalse True IRONIC_BUILD_DEPLOY_RAMDISK) # Ironic IPA ramdisk type, supported types are: IRONIC_SUPPORTED_RAMDISK_TYPES_RE="^(tinyipa|dib)$" -IRONIC_RAMDISK_TYPE=${IRONIC_RAMDISK_TYPE:-tinyipa} +IRONIC_RAMDISK_TYPE=${IRONIC_RAMDISK_TYPE:-dib} # Confirm we have a supported ramdisk type or fail early. if [[ ! "$IRONIC_RAMDISK_TYPE" =~ $IRONIC_SUPPORTED_RAMDISK_TYPES_RE ]]; then |