f2c1121868
Change-Id: Iff105f9a491dc6277586c1d53b84747c38feb585
18 lines
616 B
YAML
18 lines
616 B
YAML
---
|
|
- hosts: primary
|
|
environment:
|
|
KAYOBE_CONFIG_SOURCE_PATH: "{{ kayobe_config_src_dir }}"
|
|
# The CirrOS image does not support much beyond logging in.
|
|
KAYOBE_SEED_HOST_CONFIGURE: 0
|
|
KAYOBE_SEED_SERVICE_DEPLOY: 0
|
|
tasks:
|
|
- name: Ensure seed hypervisor is deployed
|
|
shell:
|
|
cmd: "{{ kayobe_src_dir }}/dev/seed-hypervisor-deploy.sh &> {{ logs_dir }}/ansible/seed-hypervisor-deploy"
|
|
executable: /bin/bash
|
|
|
|
- name: Ensure seed is deployed
|
|
shell:
|
|
cmd: "{{ kayobe_src_dir }}/dev/seed-deploy.sh &> {{ logs_dir }}/ansible/seed-deploy"
|
|
executable: /bin/bash
|