
- 'HEALTHY' means the db service is responsive, 'ACTIVE' means the db service is alive. - Remove the CI job fakemodetests, but will add similar testing task in the future. - Fix the periodic CI job - Remove MongoDB and related jobs Change-Id: I5abe9091ba203297dc87db5fba139179166321f7
23 lines
802 B
YAML
23 lines
802 B
YAML
- hosts: all
|
|
tasks:
|
|
- name: Ensure artifacts/images directory exists
|
|
file:
|
|
path: '{{ ansible_user_dir }}/images'
|
|
state: directory
|
|
- name: Get output image name
|
|
shell: kubeadm token create --print-join-command
|
|
register: join_command_raw
|
|
- name: Build Trove guest image
|
|
shell: >-
|
|
./trovestack build-image \
|
|
{{ datastore_type }} \
|
|
{{ guest_os }} \
|
|
{{ guest_os_release }} \
|
|
{{ dev_mode }} \
|
|
{{ guest_username }} \
|
|
{{ ansible_user_dir }}/images/trove-{{ branch }}-{{ datastore_type }}-{{ guest_os }}-{{ guest_os_release }}{{ image_suffix }}
|
|
args:
|
|
chdir: "{{ ansible_user_dir }}/src/opendev.org/openstack/trove/integration/scripts"
|
|
tags:
|
|
- skip_ansible_lint
|