2019-03-05 07:30:24 +01:00
|
|
|
"""Hetzner Cloud plugin for integration tests."""
|
2019-07-12 08:46:20 +02:00
|
|
|
from __future__ import (absolute_import, division, print_function)
|
|
|
|
__metaclass__ = type
|
2019-03-05 07:30:24 +01:00
|
|
|
|
2021-04-17 03:49:22 +02:00
|
|
|
from .. import types as t
|
|
|
|
|
2019-08-06 23:43:29 +02:00
|
|
|
from ..util import (
|
2019-04-09 22:29:30 +02:00
|
|
|
ConfigParser,
|
2021-04-17 03:49:22 +02:00
|
|
|
display,
|
2019-04-09 22:29:30 +02:00
|
|
|
)
|
2019-03-05 07:30:24 +01:00
|
|
|
|
2021-04-17 03:49:22 +02:00
|
|
|
from ..config import (
|
|
|
|
IntegrationConfig,
|
|
|
|
)
|
|
|
|
|
|
|
|
from ..target import (
|
|
|
|
IntegrationTarget,
|
2019-03-05 07:30:24 +01:00
|
|
|
)
|
|
|
|
|
2019-08-06 23:43:29 +02:00
|
|
|
from ..core_ci import (
|
2019-04-09 22:29:30 +02:00
|
|
|
AnsibleCoreCI,
|
|
|
|
)
|
2019-03-05 07:30:24 +01:00
|
|
|
|
2021-04-17 03:49:22 +02:00
|
|
|
from . import (
|
|
|
|
CloudEnvironment,
|
|
|
|
CloudEnvironmentConfig,
|
|
|
|
CloudProvider,
|
|
|
|
)
|
|
|
|
|
2019-03-05 07:30:24 +01:00
|
|
|
|
|
|
|
class HcloudCloudProvider(CloudProvider):
|
2021-04-17 03:49:22 +02:00
|
|
|
"""Hetzner Cloud provider plugin. Sets up cloud resources before delegation."""
|
|
|
|
def __init__(self, args): # type: (IntegrationConfig) -> None
|
2019-03-05 07:30:24 +01:00
|
|
|
super(HcloudCloudProvider, self).__init__(args)
|
|
|
|
|
2021-02-02 20:47:38 +01:00
|
|
|
self.uses_config = True
|
|
|
|
|
2021-04-17 03:49:22 +02:00
|
|
|
def filter(self, targets, exclude): # type: (t.Tuple[IntegrationTarget, ...], t.List[str]) -> None
|
|
|
|
"""Filter out the cloud tests when the necessary config and resources are not available."""
|
2019-04-09 22:29:30 +02:00
|
|
|
aci = self._create_ansible_core_ci()
|
|
|
|
|
2020-04-26 03:55:39 +02:00
|
|
|
if aci.available:
|
2019-03-05 07:30:24 +01:00
|
|
|
return
|
|
|
|
|
|
|
|
super(HcloudCloudProvider, self).filter(targets, exclude)
|
|
|
|
|
2021-04-17 03:49:22 +02:00
|
|
|
def setup(self): # type: () -> None
|
2019-03-05 07:30:24 +01:00
|
|
|
"""Setup the cloud resource before delegation and register a cleanup callback."""
|
|
|
|
super(HcloudCloudProvider, self).setup()
|
|
|
|
|
2019-04-09 22:29:30 +02:00
|
|
|
if not self._use_static_config():
|
|
|
|
self._setup_dynamic()
|
|
|
|
|
2021-04-17 03:49:22 +02:00
|
|
|
def _setup_dynamic(self): # type: () -> None
|
2019-04-09 22:29:30 +02:00
|
|
|
"""Request Hetzner credentials through the Ansible Core CI service."""
|
|
|
|
display.info('Provisioning %s cloud environment.' % self.platform, verbosity=1)
|
|
|
|
|
|
|
|
config = self._read_config_template()
|
2019-03-05 07:30:24 +01:00
|
|
|
|
2019-04-09 22:29:30 +02:00
|
|
|
aci = self._create_ansible_core_ci()
|
|
|
|
|
|
|
|
response = aci.start()
|
|
|
|
|
|
|
|
if not self.args.explain:
|
|
|
|
token = response['hetzner']['token']
|
|
|
|
|
|
|
|
display.sensitive.add(token)
|
|
|
|
display.info('Hetzner Cloud Token: %s' % token, verbosity=1)
|
|
|
|
|
|
|
|
values = dict(
|
|
|
|
TOKEN=token,
|
|
|
|
)
|
|
|
|
|
2019-09-17 06:01:37 +02:00
|
|
|
display.sensitive.add(values['TOKEN'])
|
|
|
|
|
2019-04-09 22:29:30 +02:00
|
|
|
config = self._populate_config_template(config, values)
|
|
|
|
|
|
|
|
self._write_config(config)
|
|
|
|
|
2021-04-17 03:49:22 +02:00
|
|
|
def _create_ansible_core_ci(self): # type: () -> AnsibleCoreCI
|
|
|
|
"""Return a Heztner instance of AnsibleCoreCI."""
|
2021-01-13 01:18:28 +01:00
|
|
|
return AnsibleCoreCI(self.args, 'hetzner', 'hetzner', persist=False, stage=self.args.remote_stage, provider='hetzner', internal=True)
|
2019-03-05 07:30:24 +01:00
|
|
|
|
|
|
|
|
|
|
|
class HcloudCloudEnvironment(CloudEnvironment):
|
2021-04-17 03:49:22 +02:00
|
|
|
"""Hetzner Cloud cloud environment plugin. Updates integration test environment after delegation."""
|
|
|
|
def get_environment_config(self): # type: () -> CloudEnvironmentConfig
|
|
|
|
"""Return environment configuration for use in the test environment after delegation."""
|
2019-03-05 07:30:24 +01:00
|
|
|
parser = ConfigParser()
|
|
|
|
parser.read(self.config_path)
|
|
|
|
|
|
|
|
env_vars = dict(
|
|
|
|
HCLOUD_TOKEN=parser.get('default', 'hcloud_api_token'),
|
|
|
|
)
|
|
|
|
|
2019-09-17 06:01:37 +02:00
|
|
|
display.sensitive.add(env_vars['HCLOUD_TOKEN'])
|
|
|
|
|
2019-03-05 07:30:24 +01:00
|
|
|
ansible_vars = dict(
|
|
|
|
hcloud_prefix=self.resource_prefix,
|
|
|
|
)
|
|
|
|
|
|
|
|
ansible_vars.update(dict((key.lower(), value) for key, value in env_vars.items()))
|
|
|
|
|
|
|
|
return CloudEnvironmentConfig(
|
|
|
|
env_vars=env_vars,
|
|
|
|
ansible_vars=ansible_vars,
|
|
|
|
)
|