From Fedora Project Wiki

 
Line 128: Line 128:
== Test Results ==  
== Test Results ==  


=== Basic tests ===
{| class="wikitable" width=100%
! User
! Profile
! [http://fedoraproject.org/wiki/QA:Testcase_base_startup Boot]
! [http://fedoraproject.org/wiki/QA:Testcase_base_system_logging Logging]
! [http://fedoraproject.org/wiki/QA:Testcase_Services_start Services Start]
! [http://fedoraproject.org/wiki/QA:Testcase_base_selinux SELinux]
! [http://fedoraproject.org/wiki/QA:Testcase_base_service_manipulation Service Manipulation]
! References
|-
| [[User:alciregi|alciregi]]
| LunaNode cloud provider
| {{result|pass}}
| {{result|pass}}
| {{result|pass}}
| {{result|pass}}
| {{result|pass}}
| <references/>
|-
| [[User:bittin|bittin]]
|
| {{result|fail}}
|
|
|
|
| <references/>
|-
| [[User:bittin|bittin]]
| Virtualbox
| {{result|fail}}
|
|
|
|
| <references/>
|-
| [[User:cmurf|cmurf]]
| F36:virt-install Fedora-Cloud-Base-36-20220405.n.0.x86_64.raw
| {{result|pass}}<ref>/ is btrfs, has dup metadata, has btrfs-progs-5.16.2-1.fc36.x86_64, raw file size 5.0G, gdisk reports /dev/vda: 20971520 sectors, 10.0 GiB, btrfs fi us reports device size 9.41 GiB
</ref>
| {{result|pass}}
| {{result|pass}}
| {{result|warn}}<ref>{{bz|2073265}} getenforce shows it is set to enforcing</ref>
| {{result|pass}}
| <references/>
|-
| [[User:danniel|danniel]]
| Fedora-Cloud-Base-36-20220405.n.0.x86_64.qcow on testcloud
| {{result|pass}}
| {{result|pass}}
| {{result|pass}}
| {{result|pass}}
| {{result|pass}}
| <references/>
|-
| [[User:ersen|ersen]]
| virt-manager
| {{result|pass}}
| {{result|pass}}
| {{result|pass}}
| {{result|pass}}
| {{result|pass}}
| <references/>
|-
| [[User:geraldosimiao|geraldosimiao]]
| Fedora-Cloud-Base-36-20220405.n.0.x86_64.qcow on testcloud
| {{result|pass}}
| {{result|pass}}
| {{result|pass}}
| {{result|pass}}
| {{result|pass}}
| <references/>
|-
| [[User:hricky|hricky]]
| Fedora-Cloud-Base-36_Beta-1.4.x86_64.qcow2 via testcloud
| {{result|pass}}
| {{result|pass}}
| {{result|pass}}
| {{result|pass}}
| {{result|pass}}
| <references/>
|-
| [[User:sayaksarkar|sayaksarkar]]
| Fedora-Cloud-Base-36-20220405.n.0.x86_64
| {{result|pass}}
| {{result|pass}}
| {{result|pass}}
| {{result|pass}}
| {{result|pass}}
| <references/>
|-
| [[User:sayaksarkar|sayaksarkar]]
| Fedora-Cloud-Base-36-20220405.n.0.x86_64.qcow
| {{result|pass}}
|
|
|
|
| <references/>
|-
|}
=== Exploratory ===
{| class="wikitable" width=100%
! User
! Profile
! [http://fedoraproject.org/wiki/Test_Day:2022-04-08_Fedora_36_Cloud_Testday Launch app on Cloud Base image]
! References
|-
|}
=== Cloud Providers ===
{| class="wikitable" width=100%
! User
! Profile
! [http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/using-features.customenv.html Launch on AWS]
! [http://docs.openstack.org/user-guide/dashboard-manage-images.html Launch on OpenStack (requires openstack instance)]
! References
|-
|}




[[Category:Fedora 36 Test Days]]
[[Category:Fedora 36 Test Days]]

Latest revision as of 12:01, 17 April 2023

Cloud Test Day
Test-days-banner.svg

Date 2022-04-08 to 2022-04-09
Time all day

Website QA/Test Days
IRC #fedora-test-day (webirc)
Mailing list test


Note.png
Can't make the date?
If you come to this page before or after the test day is completed, your testing is still valuable, and you can use the information on this page to test, file any bugs you find at Bugzilla, and add your results to the results section. If this page is more than a month old when you arrive here, please check the current schedule and see if a similar but more recent Test Day is planned or has already happened.

What to test?[edit]

Today's installment of Fedora Test Day will focus on Fedora Linux 36 Cloud Base images

Who's available[edit]

The following cast of characters will be available testing, workarounds, bug fixes, and general discussion ...

Prerequisite for Test Day[edit]

Fedora Cloud Base[edit]

This section is for the Fedora Cloud Base images, which can be used to run a yum/dnf based fedora in the cloud or as a VM. There are also Vagrant boxes available.

Image Image URL Checksum URLs
Fedora Cloud qcow2

x86_64 aarch64

x86_64 aarch64

Fedora Cloud raw

x86_64 aarch64

x86_64 aarch64

If you have access to an AWS account then please try out an AMI from the following list:

This section will be populated a day before the test day happens


A fresh system, testcloud to test qcow images locally, or access to a cloud provider like OpenStack or AWS, and a desire to break software.

Qcow2 images[edit]

The Fedora Cloud Base image are also delivered as qcow2 images. You can use testcloud to locally boot and test either of these images. You can run testcloud from a git checkout, or use dnf to install it:

sudo dnf install virt-install

Once it's installed, you can launch a VM directly with:

echo mypasswd > passwordfile
virt-install --import --name cloudtest \
--memory 2000 --network bridge=virbr0 \
--os-variant detect=on,name=fedora-unknown \
--cloud-init root-password-file=./passwordfile \
--disk=size=10,backing_store="/path/to/Fedora-Cloud-Base-xxx.qcow2"

Note that you can only log in with a password on the console of the machine. Not via SSH. If you'd like to ssh you can use:

virt-install --import --name cloudtest \
--memory 2000 --network bridge=virbr0 \
--os-variant detect=on,name=fedora-unknown \
--cloud-init ssh-key=/home/user/.ssh/id_rsa.pub \
--disk=size=10,backing_store="/path/to/Fedora-Cloud-Base-xxx.qcow2"

If you'd like to use your own cloud-init yaml file to test with you can do that too. Here's is a very short example. First create a file with name cloudinit-user-data.yaml:

#cloud-config
password: 'mypasswd'
chpasswd: { expire: false }

Then run:

virt-install --import --name cloudtest \
--memory 2000 --network bridge=virbr0 \
--os-variant detect=on,name=fedora-unknown \
--cloud-init user-data=/path/to/cloudinit-user-data.yaml \
--disk=size=10,backing_store="/path/to/Fedora-Cloud-Base-xxx.qcow2"

You can also boot qcow2 images using virtualization clients like virt-manager or VirtualBox with instruction provided here

How to test?[edit]

The cloud test day is fairly general and you can use any cloud you prefer! For example, you could:

  • Load a Fedora image into an OpenStack cloud and provide user metadata to cloud-init for initial configuration
  • Import a Fedora image into a large public cloud and verify you can install some common applications
  • Ensure normal system functions, such as restarting services or rebooting the instance, works as expected


If you find any errors or unusual warnings in the system journal on boot, those items would be helpful to share.

Run the tests[edit]

Visit the result page and click on the column title links to see the tests that need to be run: most column titles are links to a specific test case. Follow the instructions there, then enter your results by clicking the Enter result button for the test.

This testday is also meant to be exploratory, so the list on the testday app is not at all comprehensive!

Reporting bugs[edit]

If you find anything that seems wrong or off, please report a bug on Bugzilla. The affected component should be clear from whatever error message you happen to find, but if you aren't sure, ask in IRC. If you are unsure about exactly how to file the report or what other information to include, just ask on IRC and we will help you.

Test Results[edit]

Basic tests[edit]

User Profile Boot Logging Services Start SELinux Service Manipulation References
alciregi LunaNode cloud provider
Pass pass
Pass pass
Pass pass
Pass pass
Pass pass
bittin
Fail fail
bittin Virtualbox
Fail fail
cmurf F36:virt-install Fedora-Cloud-Base-36-20220405.n.0.x86_64.raw
Pass pass
[1]
Pass pass
Pass pass
Warning warn
[2]
Pass pass
  1. / is btrfs, has dup metadata, has btrfs-progs-5.16.2-1.fc36.x86_64, raw file size 5.0G, gdisk reports /dev/vda: 20971520 sectors, 10.0 GiB, btrfs fi us reports device size 9.41 GiB
  2. RHBZ #2073265 getenforce shows it is set to enforcing
danniel Fedora-Cloud-Base-36-20220405.n.0.x86_64.qcow on testcloud
Pass pass
Pass pass
Pass pass
Pass pass
Pass pass
ersen virt-manager
Pass pass
Pass pass
Pass pass
Pass pass
Pass pass
geraldosimiao Fedora-Cloud-Base-36-20220405.n.0.x86_64.qcow on testcloud
Pass pass
Pass pass
Pass pass
Pass pass
Pass pass
hricky Fedora-Cloud-Base-36_Beta-1.4.x86_64.qcow2 via testcloud
Pass pass
Pass pass
Pass pass
Pass pass
Pass pass
sayaksarkar Fedora-Cloud-Base-36-20220405.n.0.x86_64
Pass pass
Pass pass
Pass pass
Pass pass
Pass pass
sayaksarkar Fedora-Cloud-Base-36-20220405.n.0.x86_64.qcow
Pass pass

Exploratory[edit]

User Profile Launch app on Cloud Base image References

Cloud Providers[edit]

User Profile Launch on AWS Launch on OpenStack (requires openstack instance) References