summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJames Falcon <james.falcon@canonical.com>2022-01-18 09:10:36 -0600
committerGitHub <noreply@github.com>2022-01-18 09:10:36 -0600
commit62f82651f2c29db5934f16afcb9f1e522f90588a (patch)
tree2ffbf41303f7016c5b9e28730302597c828ff750 /tests
parentb306633fd17e5ba0173ad3c41add59cb11884757 (diff)
downloadvyos-cloud-init-62f82651f2c29db5934f16afcb9f1e522f90588a.tar.gz
vyos-cloud-init-62f82651f2c29db5934f16afcb9f1e522f90588a.zip
testing: support pycloudlib config file (#1189)
https://pycloudlib.readthedocs.io/en/latest/configuration.html#configuration
Diffstat (limited to 'tests')
-rw-r--r--tests/integration_tests/clouds.py24
-rw-r--r--tests/integration_tests/integration_settings.py26
2 files changed, 0 insertions, 50 deletions
diff --git a/tests/integration_tests/clouds.py b/tests/integration_tests/clouds.py
index d4670bac..e55093b1 100644
--- a/tests/integration_tests/clouds.py
+++ b/tests/integration_tests/clouds.py
@@ -106,15 +106,6 @@ class IntegrationCloud(ABC):
def __init__(self, settings=integration_settings):
self.settings = settings
self.cloud_instance = self._get_cloud_instance()
- if settings.PUBLIC_SSH_KEY is not None:
- # If we have a non-default key, use it.
- self.cloud_instance.use_key(
- settings.PUBLIC_SSH_KEY, name=settings.KEYPAIR_NAME
- )
- elif settings.KEYPAIR_NAME is not None:
- # Even if we're using the default key, it may still have a
- # different name in the clouds, so we need to set it separately.
- self.cloud_instance.key_pair.name = settings.KEYPAIR_NAME
self.released_image_id = self._get_initial_image()
self.snapshot_id = None
@@ -260,17 +251,8 @@ class OciCloud(IntegrationCloud):
integration_instance_cls = IntegrationOciInstance
def _get_cloud_instance(self):
- if not integration_settings.ORACLE_AVAILABILITY_DOMAIN:
- raise Exception(
- "ORACLE_AVAILABILITY_DOMAIN must be set to a valid "
- "availability domain. If using the oracle CLI, "
- "try `oci iam availability-domain list`"
- )
return OCI(
tag="oci-integration-test",
- availability_domain=(
- integration_settings.ORACLE_AVAILABILITY_DOMAIN,
- ),
)
@@ -373,14 +355,8 @@ class OpenstackCloud(IntegrationCloud):
integration_instance_cls = IntegrationInstance
def _get_cloud_instance(self):
- if not integration_settings.OPENSTACK_NETWORK:
- raise Exception(
- "OPENSTACK_NETWORK must be set to a valid Openstack network. "
- "If using the openstack CLI, try `openstack network list`"
- )
return Openstack(
tag="openstack-integration-test",
- network=integration_settings.OPENSTACK_NETWORK,
)
def _get_initial_image(self):
diff --git a/tests/integration_tests/integration_settings.py b/tests/integration_tests/integration_settings.py
index 02037a88..f27e4f12 100644
--- a/tests/integration_tests/integration_settings.py
+++ b/tests/integration_tests/integration_settings.py
@@ -79,32 +79,6 @@ COLLECT_LOGS = "ON_ERROR"
LOCAL_LOG_PATH = "/tmp/cloud_init_test_logs"
##################################################################
-# SSH KEY SETTINGS
-##################################################################
-
-# A path to the public SSH key to use for test runs. (Defaults to pycloudlib's
-# default behaviour, using ~/.ssh/id_rsa.pub.)
-PUBLIC_SSH_KEY = None
-
-# For clouds which use named keypairs for SSH connection, the name that is used
-# for the keypair. (Defaults to pycloudlib's default behaviour.)
-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
-
-##################################################################
-# OCI SETTINGS
-##################################################################
-# Availability domain to use for Oracle. Should be one of the namess found
-# in `oci iam availability-domain list`
-ORACLE_AVAILABILITY_DOMAIN = None
-
-##################################################################
# USER SETTINGS OVERRIDES
##################################################################
# Bring in any user-file defined settings