--- - import_playbook: ../common-packer/provision/baseline.yaml - hosts: all vars: openvswitch_version: 2.8.2 openvswitch_checksum: sha256:87b4a7e7134a44ce1f808d3415a2244b4518c2b0b2a42fa2f8231e592f13103d k8s_version: 1.13.2 golang_version: 1.11.5 golang_checksum: sha256:ff54aafedff961eb94792487e827515da683d61a5f9482f668008832631e5d25 pre_tasks: - include_role: name=lfit.system-update roles: - {role: lfit.docker-install, ubuntu_docker_version: 18.06.0~ce~3-0~ubuntu} - fkautz.bridge-utils-install - fkautz.golang-install - fkautz.kubernetes-install - fkautz.openvswitch-install - hosts: all tasks: - name: Make example directory file: path: /opt/k8s-examples state: directory become: true - name: Copy example files to example directory synchronize: src: ../provision/examples/ dest: /opt/k8s-examples/ become: true post_tasks: - name: System Reseal script: ../common-packer/provision/system-reseal.sh become: true