diff options
author | James Falcon <TheRealFalcon@users.noreply.github.com> | 2021-03-03 14:40:07 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-03 15:40:07 -0500 |
commit | 3dd3de7c381e870c6bc9b9b7a84d452b57594686 (patch) | |
tree | 522013f77ac57a9976b7694f30eadc9cee6c7516 /tests/integration_tests/integration_settings.py | |
parent | 3be666306023caf6f236464fb655741b6605bdf7 (diff) | |
download | vyos-cloud-init-3dd3de7c381e870c6bc9b9b7a84d452b57594686.tar.gz vyos-cloud-init-3dd3de7c381e870c6bc9b9b7a84d452b57594686.zip |
integration_tests: add OpenStack as a platform (#804)
Diffstat (limited to 'tests/integration_tests/integration_settings.py')
-rw-r--r-- | tests/integration_tests/integration_settings.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/integration_tests/integration_settings.py b/tests/integration_tests/integration_settings.py index 157d34ad..0703be58 100644 --- a/tests/integration_tests/integration_settings.py +++ b/tests/integration_tests/integration_settings.py @@ -21,6 +21,7 @@ RUN_UNSTABLE = False # ec2 # gce # oci +# openstack PLATFORM = 'lxd_container' # The cloud-specific instance type to run. E.g., a1.medium on AWS @@ -90,6 +91,13 @@ PUBLIC_SSH_KEY = None KEYPAIR_NAME = None ################################################################## +# OPENSTACK SETTINGS +################################################################## +# Network to use for Openstack. Should be one of the names/ids found +# in `openstack network list` +OPENSTACK_NETWORK = None + +################################################################## # USER SETTINGS OVERRIDES ################################################################## # Bring in any user-file defined settings |