
Migrate tests from microk8s to ck8s. Bootstrap a controller on a manual cloud, and add ck8s to available clouds. Upgrade juju to 3.5 Configure ephemeral device when available, configure k8s to use it for local storage. Change-Id: Ief491f8b339307f0c43d11639336b02d9f6479b4 Signed-off-by: Guillaume Boutry <guillaume.boutry@canonical.com>
16 lines
629 B
YAML
16 lines
629 B
YAML
# From https://opendev.org/openstack/openstack-zuul-jobs/src/commit/7f5a075f3de7eac295094258cbd309a41d8ac798/roles/configure-swap/tasks/main.yaml
|
|
# On RAX hosts, we have a small root partition and a large,
|
|
# unallocated ephemeral device attached at /dev/xvde
|
|
- name: Set ephemeral device if /dev/xvde exists
|
|
when: ansible_devices["xvde"] is defined
|
|
ansible.builtin.set_fact:
|
|
ephemeral_device: "/dev/xvde"
|
|
|
|
- name: Configure ephemeral device
|
|
ansible.builtin.include_tasks: ephemeral.yaml
|
|
when: ephemeral_device is defined
|
|
|
|
- name: Debug the ephemeral_device variable
|
|
ansible.builtin.debug:
|
|
var: ephemeral_device
|