Saturday, 2021-02-27

*** tosky has quit IRC00:42
*** gyee has quit IRC00:56
openstackgerritMerged openstack/ironic-lib master: Remove default parameter from execute  https://review.opendev.org/c/openstack/ironic-lib/+/77756000:59
openstackgerritMerged openstack/ironic master: [Trivial] Fix testing of volume connector exception  https://review.opendev.org/c/openstack/ironic/+/77775700:59
openstackgerritVerification of a change to openstack/ironic failed: [trivial] Remove default parameter from execute  https://review.opendev.org/c/openstack/ironic/+/77734801:11
*** zzzeek has quit IRC02:04
*** zzzeek has joined #openstack-ironic02:07
*** k_mouza has joined #openstack-ironic02:09
*** k_mouza has quit IRC02:14
openstackgerritMohammed Naser proposed openstack/ironic-python-agent master: Allow clean_configuration to run against full-device arrays  https://review.opendev.org/c/openstack/ironic-python-agent/+/77785402:45
*** ricolin_ has joined #openstack-ironic02:48
*** ricolin_ has quit IRC03:23
*** bdodd has quit IRC03:44
*** stevebaker has quit IRC04:24
*** k_mouza has joined #openstack-ironic04:51
*** k_mouza has quit IRC04:56
openstackgerritMohammed Naser proposed openstack/ironic-python-agent stable/ussuri: Software RAID: Get component devices by md UUID  https://review.opendev.org/c/openstack/ironic-python-agent/+/77777805:20
*** uzumaki has joined #openstack-ironic06:10
*** uzumaki has quit IRC08:13
*** dsneddon_ has quit IRC10:26
*** tosky has joined #openstack-ironic11:24
openstackgerritArne Wiebalck proposed openstack/ironic master: Lazy-load node details from the DB  https://review.opendev.org/c/openstack/ironic/+/77693012:14
*** paras333 has joined #openstack-ironic13:05
*** paras333 has quit IRC13:10
*** dsneddon_ has joined #openstack-ironic13:21
*** tkajinam has quit IRC13:31
*** k_mouza has joined #openstack-ironic13:53
*** anuradha1904 has joined #openstack-ironic13:56
*** k_mouza has quit IRC13:58
*** ricolin_ has joined #openstack-ironic14:07
*** paras333_ has joined #openstack-ironic14:30
*** paras333_ has quit IRC14:34
openstackgerritArne Wiebalck proposed openstack/ironic master: Lazy-load node details from the DB  https://review.opendev.org/c/openstack/ironic/+/77693014:35
*** paras333 has joined #openstack-ironic14:46
*** ricolin_ has quit IRC14:46
*** paras333 has quit IRC14:50
*** paras333 has joined #openstack-ironic16:04
*** paras333 has quit IRC16:08
openstackgerritArne Wiebalck proposed openstack/ironic master: Lazy-load node details from the DB  https://review.opendev.org/c/openstack/ironic/+/77693017:04
*** paras333 has joined #openstack-ironic17:07
*** paras333 has quit IRC17:12
*** paras333 has joined #openstack-ironic18:21
*** paras333 has quit IRC18:25
openstackgerritVerification of a change to openstack/ironic failed: devstack: a safeguard for disabled tempurls  https://review.opendev.org/c/openstack/ironic/+/77757218:27
*** dsneddon_ has quit IRC18:28
openstackgerritMerged openstack/ironic master: Enforce autospec in test_node  https://review.opendev.org/c/openstack/ironic/+/77647918:48
openstackgerritMerged openstack/ironic master: Enforce autospec in test_notification_utils module  https://review.opendev.org/c/openstack/ironic/+/77660318:48
openstackgerritMerged openstack/ironic master: Enforce autospec in test_driver  https://review.opendev.org/c/openstack/ironic/+/77708218:49
*** anuradha1904 has quit IRC19:02
*** dsneddon_ has joined #openstack-ironic19:19
*** dsneddon_ has quit IRC19:24
*** dsneddon_ has joined #openstack-ironic19:28
*** dsneddon_ has quit IRC19:33
*** dsneddon_ has joined #openstack-ironic19:48
*** dsneddon_ has quit IRC19:54
mnaserim running into this (and then what follows up with a failed boot): 2021-02-27 20:11:27.237 1 INFO ironic.drivers.modules.agent_base [-] Could not install bootloader for whole disk image for node 2d795742-bce8-47a7-86e6-6b8e3567c8ea, Error: {'type': 'CommandExecutionError', 'code': 500, 'message': 'Command execution failed', 'details': "Installing GRUB2 boot loader to device /dev/md127 failed with Unexpected20:19
mnasererror while running command.\nCommand: mount -o bind /dev /tmp/tmpi8xfuqt6/dev\nExit code: 32\nStdout: ''\nStderr: 'mount: /tmp/tmpi8xfuqt6/dev: mount point does not exist.\\n'."}"20:19
mnaseri assume that `/dev` maybe doesnt exist in my target image (seems unlikely), or the mount failed20:19
mnaserthe mount for /tmp that is, is there a way to stop ipa on/when it fails...?20:20
mnaserhttps://docs.openstack.org/ironic/latest/admin/troubleshooting.html#my-test-vm-image-does-not-deploy-mount-point-does-not-exist20:20
mnaserah20:20
mnaseri'm opening up the image inside guestfish now to see if it indeed doesnt include it20:22
mnaserin my case it's a simple build: `disk-image-create centos vm block-device-efi dhcp-all-interfaces devuser -o centos-8-devuser`20:23
mnaserhmm.. /dev does exist in that image20:27
mnaseri wonder if block-device-efi is what is confusing it20:28
mnaserso its not mounting /dev/sda3 but instead 2 or 120:29
mnaserok, so tracing the code, i see a FIXME "make software RAID work with efibootmgr" so _efi_boot_setup is probably returning false and falling back to grub2...20:34
mnaser"We don't have a working root UUID detection for whole disk images.  Until we can do it, avoid a confusing traceback." .. i also see in my conductor: "Could not get 'rootfs_uuid' property for image 37d52738-c15e-465e-ad98-8aa6c1a3c2c7 from Glance for node 2d795742-bce8-47a7-86e6-6b8e3567c8ea. KeyError: 'rootfs_uuid'."20:35
*** paras333 has joined #openstack-ironic20:37
mnaser"Starting with Ussuri, the image can also have additional metadata to point Ironic to the partition with the root file system: for this, the image needs to set the rootfs_uuid property with the file system UUID of the root file system."20:38
mnaserrtfd mo, ok, time to try agian20:38
*** paras333 has quit IRC20:41
*** dsneddon_ has joined #openstack-ironic20:43
mnaserprogress i guess... "{'type': 'CommandExecutionError', 'code': 500, 'message': 'Command execution failed', 'details': 'Installing GRUB2 boot loader to device /dev/md127 failed with Unexpected error while running command.\nCommand: chroot /tmp/tmp_rk2i70n /bin/sh -c "grub2-install"\nExit code: 1\nStdout: \'\'\nStderr: "Installing for x86_64-efi platform.\\ngrub2-install: error: ../grub-core/kern/disk.c:237:disk21:17
mnaser`md127,3\' not found.\\n".'}"21:17
openstackgerritMohammed Naser proposed openstack/ironic-python-agent master: Allow clean_configuration to run against full-device arrays  https://review.opendev.org/c/openstack/ironic-python-agent/+/77785422:23
openstackgerritMohammed Naser proposed openstack/ironic-python-agent master: Allow clean_configuration to run against full-device arrays  https://review.opendev.org/c/openstack/ironic-python-agent/+/77785422:24
*** dsneddon_ has quit IRC22:28
*** dsneddon_ has joined #openstack-ironic22:34
*** dsneddon_ has quit IRC22:40
*** dsneddon_ has joined #openstack-ironic23:14
*** dsneddon_ has quit IRC23:19
*** dsneddon_ has joined #openstack-ironic23:24
*** dsneddon_ has quit IRC23:30
openstackgerritVerification of a change to openstack/ironic failed: Add both IPv4 and IPv6 DHCP options if interface has both  https://review.opendev.org/c/openstack/ironic/+/77769223:34
*** dsneddon_ has joined #openstack-ironic23:41
mnaserok.. i think it may be because my images don't have mdadm so grub is acting up?23:59
mnasercentos 8 doesnt have that preinstalled23:59

Generated by irclog2html.py 2.17.2 by Marius Gedminas - find it at https://mg.pov.lt/irclog2html/!