diff options
author | Julia Kreger <juliaashleykreger@gmail.com> | 2020-09-21 09:14:25 -0700 |
---|---|---|
committer | Julia Kreger <juliaashleykreger@gmail.com> | 2020-09-21 09:14:25 -0700 |
commit | 4e8f664ea2d01fe13f55ed7cf3a424cd3c17d289 (patch) | |
tree | f8664848368893fa4d6211501c9b849a3d076821 /devstack | |
parent | 6b8c675ff6c7e5041578f755a8c8f4ae9996f67a (diff) | |
download | ironic-4e8f664ea2d01fe13f55ed7cf3a424cd3c17d289.tar.gz |
CI: Remove the build check for pre-build ramdisks only
In the devstack plugin, we identify RAX hosts and change the settings
slightly to help ensure CI job passage. This is because the machines are
fully emulated as opposed to paravirtualized which causes a performance
impact with our test VMs that we create. Since we can hit issues
while scheduling on RAX in general, it only makes sense to also
swap the job out for centos based IPA jobs that some how happen on
to a RAX node. Since the CI jobs have largely been "de-typed" name
wise, this should be fine.
Change-Id: I63fc5de05c3975433c12ddd9ba21ebb676de2e6c
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 76d36fff2..a54c5f925 100644 --- a/devstack/lib/ironic +++ b/devstack/lib/ironic @@ -265,7 +265,7 @@ fi # Prevent a case that will likely result in a failure. if [[ "$hostdomain" =~ "rax" ]]; then - if [[ "$IRONIC_RAMDISK_TYPE" == "dib" ]] && [[ "$IRONIC_BUILD_DEPLOY_RAMDISK" == "False" ]]; then + if [[ "$IRONIC_RAMDISK_TYPE" == "dib" ]]; then echo "** WARNING ** - DIB based IPA images have been defined, however we are running devstack on RAX VM. Due to virtualization constraints, we are automatically falling back to TinyIPA to ensure CI job passage." IRONIC_RAMDISK_TYPE="tinyipa" fi |