mirror of
https://github.com/kasmtech/ansible
synced 2024-12-13 13:32:30 +00:00
08fae58593
- Instead of downloading the kasm_release tarball to every host directly, we copy it from the ansible host. - Allow user to put service_images and workspace_images in `install_common/files/` to do an offline install. - Update readme with new instructions.
39 lines
1.6 KiB
YAML
39 lines
1.6 KiB
YAML
# List of files in the files directory matching the installer, service_images, and workspace images.
|
|
- set_fact:
|
|
installer_glob: "{{ lookup('fileglob', '{{role_path}}/files/kasm_workspaces_*.tar.gz', wantlist=True) }}"
|
|
service_images_glob: "{{ lookup('fileglob', '{{role_path}}/files/kasm_workspaces_service_images*.tar.gz', wantlist=True) }}"
|
|
workspace_images_glob: "{{ lookup('fileglob', '{{role_path}}/files/kasm_workspaces_workspace_images_*.tar.gz', wantlist=True) }}"
|
|
delegate_to: localhost
|
|
|
|
- set_fact:
|
|
# Our installer glob search will also include service_images and workspace_images so we filter them out with difference()
|
|
installer_file: "{{ installer_glob | difference(service_images_glob) | difference(workspace_images_glob) | first | default(None) }}"
|
|
service_images_file: "{{ service_images_glob | first | default(None) }}"
|
|
workspace_images_file: "{{ workspace_images_glob | first | default(None) }}"
|
|
|
|
- name: Assert that Kasm installer exists
|
|
assert:
|
|
that:
|
|
- installer_file
|
|
fail_msg:
|
|
- "Kasm installer not found"
|
|
- "Ensure that kasm_workspaces installer tarfile is in {{role_path}}/files/"
|
|
|
|
- name: unarchive kasm installer
|
|
unarchive:
|
|
src: "{{ installer_file }}"
|
|
dest: "{{ tempdir.path }}"
|
|
|
|
- name: Copy service images
|
|
copy:
|
|
src: "{{ service_images_file }}"
|
|
dest: "{{ tempdir.path }}"
|
|
register: service_images_copy
|
|
when: service_images_file
|
|
|
|
- name: Copy Workspace images
|
|
copy:
|
|
src: "{{ workspace_images_file }}"
|
|
dest: "{{ tempdir.path }}"
|
|
register: workspace_images_copy
|
|
when: workspace_images_file
|