mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
1ab2a5f1bc
* Add default license header to files which have no copyright or license header yet. * yml extension should have been xml...
111 lines
2.5 KiB
YAML
111 lines
2.5 KiB
YAML
---
|
|
# 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
|
|
|
|
- name: run check deploy nomad job
|
|
nomad_job:
|
|
host: localhost
|
|
state: present
|
|
use_ssl: false
|
|
content: "{{ lookup('file', 'job.hcl') }}"
|
|
register: job_check_deployed
|
|
check_mode: true
|
|
|
|
- name: run create nomad job
|
|
nomad_job:
|
|
host: localhost
|
|
state: present
|
|
use_ssl: false
|
|
content: "{{ lookup('file', 'job.hcl') }}"
|
|
force_start: true
|
|
register: job_deployed
|
|
|
|
- name: get nomad job deployed
|
|
nomad_job_info:
|
|
host: localhost
|
|
use_ssl: false
|
|
name: example
|
|
register: get_nomad_job
|
|
|
|
- name: get list of nomad jobs
|
|
nomad_job_info:
|
|
host: localhost
|
|
use_ssl: false
|
|
register: list_nomad_jobs
|
|
|
|
- name: assert job is deployed and tasks is changed
|
|
assert:
|
|
that:
|
|
- job_check_deployed is changed
|
|
- job_deployed is changed
|
|
- get_nomad_job.result[0].ID == "example"
|
|
- list_nomad_jobs.result | length == 1
|
|
|
|
- name: run check deploy job idempotence
|
|
nomad_job:
|
|
host: localhost
|
|
state: present
|
|
use_ssl: false
|
|
content: "{{ lookup('file', 'job.hcl') }}"
|
|
register: job_check_deployed_idempotence
|
|
check_mode: true
|
|
|
|
- name: run create nomad job idempotence
|
|
nomad_job:
|
|
host: localhost
|
|
state: present
|
|
use_ssl: false
|
|
content: "{{ lookup('file', 'job.hcl') }}"
|
|
register: job_deployed_idempotence
|
|
|
|
- name: get list of nomad jobs
|
|
nomad_job_info:
|
|
host: localhost
|
|
use_ssl: false
|
|
register: list_nomad_jobs
|
|
|
|
- debug:
|
|
msg: "{{ list_nomad_jobs }}"
|
|
|
|
- name: run check delete nomad job
|
|
nomad_job:
|
|
host: localhost
|
|
state: absent
|
|
use_ssl: false
|
|
content: "{{ lookup('file', 'job.hcl') }}"
|
|
register: job_deleted_check
|
|
check_mode: true
|
|
|
|
- name: run delete nomad job
|
|
nomad_job:
|
|
host: localhost
|
|
state: absent
|
|
use_ssl: false
|
|
content: "{{ lookup('file', 'job.hcl') }}"
|
|
register: job_deleted
|
|
|
|
- name: get job deleted
|
|
nomad_job_info:
|
|
host: localhost
|
|
use_ssl: false
|
|
name: example
|
|
register: get_job_delete
|
|
|
|
- name: get list of nomad jobs
|
|
nomad_job_info:
|
|
host: localhost
|
|
use_ssl: false
|
|
register: list_nomad_jobs
|
|
|
|
- debug:
|
|
msg: "{{ list_nomad_jobs }}"
|
|
|
|
- name: assert idempotence
|
|
assert:
|
|
that:
|
|
- job_check_deployed_idempotence is not changed
|
|
- job_deployed_idempotence is not changed
|
|
- job_deleted_check is changed
|
|
- job_deleted is changed
|
|
- get_job_delete.result[0].Stop
|