Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion test/bin/scenario.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ source "${SCRIPTDIR}/common_versions.sh"
source "${SCRIPTDIR}/scenario_container.sh"

DEFAULT_BOOT_BLUEPRINT="rhel-9.4"
LVM_SYSROOT_SIZE="10240"
LVM_SYSROOT_SIZE="15360"
PULL_SECRET="${PULL_SECRET:-${HOME}/.pull-secret.json}"
PULL_SECRET_CONTENT="$(jq -c . "${PULL_SECRET}")"
VM_BOOT_TIMEOUT=1200 # Overall total boot times are around 15m
Expand Down
10 changes: 5 additions & 5 deletions test/kickstart-templates/includes/main-prologue.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,19 @@ text
reboot

# Partition the disk with hardware-specific boot and swap partitions, adding an
# LVM volume that contains a 10GB+ system root. The remainder of the volume will
# be used by the CSI driver for storing data.
# LVM volume that contains a system root partition of the specified size.
# The remainder of the volume will be used by the CSI driver for storing data.
#
# For example, a 20GB disk may be partitioned in the following way:
# For example, a 20GB disk with 15GB system root may be partitioned in the following way.
#
# NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINTS
# loop0 7:0 0 7.9M 1 loop
# sda 8:0 0 20G 0 disk
# ├─sda1 8:1 0 1G 0 part /boot
# └─sda2 8:2 0 19G 0 part
# └─rhel-root 253:0 0 10G 0 lvm /sysroot
# └─rhel-root 253:0 0 15G 0 lvm /sysroot
# sr0 11:0 1 1024M 0 rom
# zram0 252:0 0 3.6G 0 disk [SWAP]
# zram0 252:0 0 3.8G 0 disk [SWAP]
#
zerombr
clearpart --all --initlabel
Expand Down
9 changes: 7 additions & 2 deletions test/suites/optional/olm.robot
Original file line number Diff line number Diff line change
Expand Up @@ -61,14 +61,19 @@ OLM Should Be Ready
Create CatalogSource
[Documentation] Create CatalogSource resource with Red Hat Community Catalog Index.
Oc Create -f ${CATALOG_SOURCE}
Wait Until Keyword Succeeds 120s 5s
Wait Until Keyword Succeeds 5m 10s
... CatalogSource Should Be Ready ${MARKETPLACE_NAMESPACE} redhat-operators

CatalogSource Should Be Ready
[Documentation] Checks if CatalogSource is ready.
[Arguments] ${namespace} ${name}
${catalog}= Oc Get catalogsources ${namespace} ${name}
Should Be Equal As Strings READY ${catalog.status.connectionState.lastObservedState}
TRY
Should Be Equal As Strings READY ${catalog.status.connectionState.lastObservedState}
EXCEPT
Run With Kubeconfig oc get events -n openshift-marketplace --sort-by='.lastTimestamp'
Fail Catalog Source Is Not Ready
END

Create Subscription
[Documentation] Creates subscription.
Expand Down