2022-08-05 14:03:38 +02:00
|
|
|
---
|
|
|
|
# Copyright (c) Ansible Project
|
|
|
|
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
2020-10-19 13:40:07 +02:00
|
|
|
- name: Skip unsupported platforms
|
|
|
|
meta: end_play
|
2022-02-21 21:14:45 +01:00
|
|
|
# TODO: figure out why Alpine does not work!
|
|
|
|
when: |
|
|
|
|
ansible_distribution == 'CentOS' and ansible_distribution_major_version is not version('7', '>=')
|
|
|
|
or ansible_distribution == 'Alpine'
|
2020-10-19 13:40:07 +02:00
|
|
|
|
|
|
|
- name: Install Nomad and test
|
|
|
|
vars:
|
|
|
|
nomad_version: 0.12.4
|
|
|
|
nomad_uri: https://releases.hashicorp.com/nomad/{{ nomad_version }}/nomad_{{ nomad_version }}_{{ ansible_system | lower }}_{{ nomad_arch }}.zip
|
2021-09-09 07:31:44 +02:00
|
|
|
nomad_cmd: '{{ remote_tmp_dir }}/nomad'
|
2020-10-19 13:40:07 +02:00
|
|
|
block:
|
|
|
|
|
|
|
|
- name: Install requests<2.20 (CentOS/RHEL 6)
|
|
|
|
pip:
|
|
|
|
name: requests<2.20
|
2022-09-10 11:08:13 +02:00
|
|
|
extra_args: "-c {{ remote_constraints }}"
|
2020-10-19 13:40:07 +02:00
|
|
|
register: result
|
|
|
|
until: result is success
|
|
|
|
when: ansible_distribution_file_variety|default() == 'RedHat' and ansible_distribution_major_version is version('6', '<=')
|
|
|
|
|
|
|
|
- name: Install python-nomad
|
|
|
|
pip:
|
|
|
|
name: python-nomad
|
2022-09-10 11:08:13 +02:00
|
|
|
extra_args: "-c {{ remote_constraints }}"
|
2020-10-19 13:40:07 +02:00
|
|
|
register: result
|
|
|
|
until: result is success
|
|
|
|
|
|
|
|
- name: Install jmespath
|
|
|
|
pip:
|
|
|
|
name: jmespath
|
2022-09-10 11:08:13 +02:00
|
|
|
extra_args: "-c {{ remote_constraints }}"
|
2020-10-19 13:40:07 +02:00
|
|
|
register: result
|
|
|
|
until: result is success
|
|
|
|
|
2022-02-21 21:14:45 +01:00
|
|
|
- name: Generate privatekey
|
|
|
|
community.crypto.openssl_privatekey:
|
|
|
|
path: '{{ remote_tmp_dir }}/privatekey.pem'
|
|
|
|
|
|
|
|
- name: Generate CSR
|
|
|
|
community.crypto.openssl_csr:
|
|
|
|
path: '{{ remote_tmp_dir }}/csr.csr'
|
|
|
|
privatekey_path: '{{ remote_tmp_dir }}/privatekey.pem'
|
|
|
|
subject:
|
|
|
|
commonName: localhost
|
|
|
|
|
|
|
|
- name: Generate selfsigned certificate
|
|
|
|
register: selfsigned_certificate
|
|
|
|
community.crypto.x509_certificate:
|
|
|
|
path: '{{ remote_tmp_dir }}/cert.pem'
|
|
|
|
csr_path: '{{ remote_tmp_dir }}/csr.csr'
|
|
|
|
privatekey_path: '{{ remote_tmp_dir }}/privatekey.pem'
|
|
|
|
provider: selfsigned
|
|
|
|
selfsigned_digest: sha256
|
2020-10-19 13:40:07 +02:00
|
|
|
|
|
|
|
- name: Install unzip
|
|
|
|
package:
|
|
|
|
name: unzip
|
|
|
|
register: result
|
|
|
|
until: result is success
|
|
|
|
when: ansible_distribution != "MacOSX"
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that: ansible_architecture in ['i386', 'x86_64', 'amd64']
|
|
|
|
|
|
|
|
- set_fact:
|
|
|
|
nomad_arch: '386'
|
|
|
|
when: ansible_architecture == 'i386'
|
|
|
|
|
|
|
|
- set_fact:
|
|
|
|
nomad_arch: amd64
|
|
|
|
when: ansible_architecture in ['x86_64', 'amd64']
|
|
|
|
|
|
|
|
- name: Download nomad binary
|
|
|
|
unarchive:
|
|
|
|
src: '{{ nomad_uri }}'
|
2021-09-09 07:31:44 +02:00
|
|
|
dest: '{{ remote_tmp_dir }}'
|
2020-10-19 13:40:07 +02:00
|
|
|
remote_src: true
|
|
|
|
register: result
|
|
|
|
until: result is success
|
|
|
|
|
|
|
|
- vars:
|
2021-09-09 07:31:44 +02:00
|
|
|
remote_dir: '{{ echo_remote_tmp_dir.stdout }}'
|
2020-10-19 13:40:07 +02:00
|
|
|
block:
|
|
|
|
|
2021-09-09 07:31:44 +02:00
|
|
|
- command: echo {{ remote_tmp_dir }}
|
|
|
|
register: echo_remote_tmp_dir
|
2020-10-19 13:40:07 +02:00
|
|
|
|
|
|
|
- name: Run tests integration
|
|
|
|
block:
|
|
|
|
- name: Start nomad (dev mode enabled)
|
|
|
|
shell: nohup {{ nomad_cmd }} agent -dev </dev/null >/dev/null 2>&1 &
|
|
|
|
|
|
|
|
- name: wait nomad up
|
|
|
|
wait_for:
|
|
|
|
host: localhost
|
|
|
|
port: 4646
|
|
|
|
delay: 10
|
|
|
|
timeout: 60
|
|
|
|
|
|
|
|
- import_tasks: nomad_job.yml
|
|
|
|
always:
|
|
|
|
|
|
|
|
- name: kill nomad
|
|
|
|
shell: pkill nomad
|