From Fedora Project Wiki
< User:Roshi | QA/AtomicTests
(Created page with "{{QA/Test_Case |description=This is a simple testcase to determine whether docker-storage-setup runs correctly after booting an Atomic Host. {{Admon/note|Prerequisite|This tes...") |
(update for f28 changes) |
||
Line 10: | Line 10: | ||
|results= | |results= | ||
# The output of the first command should resemble: | # The output of the first command should resemble: | ||
Starting Docker Storage Setup... | |||
WARN: sector size not found in sfdisk output, assuming 512 | |||
NOCHANGE: partition 2 could only be grown by -33 [fudge=2048] | |||
Physical volume "/dev/vda2" changed | |||
1 physical volume(s) resized / 0 physical volume(s) not resized | |||
Size of logical volume atomicos/root unchanged from <5.00 GiB (1279 extents). | |||
Logical volume atomicos/root successfully resized. | |||
Started Docker Storage Setup. | |||
# The lsblk command output should resemble: | # The lsblk command output should resemble: | ||
NAME | <nowiki> | ||
vda | # lsblk | ||
NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT | |||
sr0 11:0 1 366K 0 rom | |||
vda 252:0 0 6G 0 disk | |||
├─vda1 252:1 0 1G 0 part /boot | |||
└─vda2 252:2 0 5G 0 part | |||
└─atomicos-root 253:0 0 5G 0 lvm /sysroot | |||
</nowiki> | |||
}} | }} |
Revision as of 02:22, 11 April 2018
Description
This is a simple testcase to determine whether docker-storage-setup runs correctly after booting an Atomic Host.
Setup
- Ensure you have a booted working Atomic Host
How to test
- Run the following commands:
# journalctl -o cat --unit docker-storage-setup.service # lsblk
Expected Results
- The output of the first command should resemble:
Starting Docker Storage Setup... WARN: sector size not found in sfdisk output, assuming 512 NOCHANGE: partition 2 could only be grown by -33 [fudge=2048]
Physical volume "/dev/vda2" changed 1 physical volume(s) resized / 0 physical volume(s) not resized Size of logical volume atomicos/root unchanged from <5.00 GiB (1279 extents). Logical volume atomicos/root successfully resized.
Started Docker Storage Setup.
- The lsblk command output should resemble:
# lsblk NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT sr0 11:0 1 366K 0 rom vda 252:0 0 6G 0 disk ├─vda1 252:1 0 1G 0 part /boot └─vda2 252:2 0 5G 0 part └─atomicos-root 253:0 0 5G 0 lvm /sysroot