Skip to content

Commit

Permalink
testcloud: Raise default limits
Browse files Browse the repository at this point in the history
Will make teemtee/try#1 more robust.
  • Loading branch information
frantisekz committed Mar 8, 2023
1 parent b38838e commit b3c2b2c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tmt/steps/provision/testcloud.py
Original file line number Diff line number Diff line change
Expand Up @@ -156,17 +156,17 @@ def import_testcloud() -> None:
""" # noqa: E501

# VM defaults
DEFAULT_BOOT_TIMEOUT = 60 # seconds
DEFAULT_BOOT_TIMEOUT = 120 # seconds
DEFAULT_CONNECT_TIMEOUT = 60 # seconds
NON_KVM_ADDITIONAL_WAIT = 10 # seconds
NON_KVM_TIMEOUT_COEF = 10 # times
NON_KVM_ADDITIONAL_WAIT = 20 # seconds
NON_KVM_TIMEOUT_COEF = 10 # times

# SSH key type, set None for ssh-keygen default one
SSH_KEYGEN_TYPE = "ecdsa"

DEFAULT_USER = 'root'
DEFAULT_MEMORY = 2048
DEFAULT_DISK = 10
DEFAULT_MEMORY = 2048 # MB
DEFAULT_DISK = 40 # GB (maximum size allowed)
DEFAULT_IMAGE = 'fedora'
DEFAULT_CONNECTION = 'session'
DEFAULT_ARCH = platform.machine()
Expand Down

0 comments on commit b3c2b2c

Please sign in to comment.