From 95a202dcbd62d616698aedc7f993f91910b2187d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=ABtan=20Duchaussois?= Date: Mon, 15 Nov 2021 15:34:49 +0100 Subject: Unmask Job creation error The rundeck job creation api endpoint always return 200 with the result in the body. The ansible action always succeed. This PR displays the errors and if `rundeck_ignore_creation_error` is set to false, fails. --- README.md | 3 ++- defaults/main.yml | 1 + tasks/rundeck.yml | 12 ++++++++++++ 3 files changed, 15 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 5a99be8..cc3a38e 100644 --- a/README.md +++ b/README.md @@ -18,6 +18,7 @@ Role Variables * `rundeck_api_version` api version supported by rundeck server. Default to 26. * `rundeck_remove_missing` Whether to delete jobs present in rundeck and not in file. Defaults to true. * `rundeck_jobs_group` the group of job to check for removal +* `rundeck_ignore_creation_errors` whether to ignore job creation error. Default to true to follow the 200 statu given by rundeck API A [dhall](https://dhall-lang.org/) Type representing the roles' variables is available in the `./dhall/Config.dhall` file to help you configure your projects with some type checking. @@ -42,7 +43,7 @@ Including an example of how to use your role (for instance, with variables passe License ------- -TBD +BSD Author Information ------------------ diff --git a/defaults/main.yml b/defaults/main.yml index 87958ec..32342aa 100644 --- a/defaults/main.yml +++ b/defaults/main.yml @@ -1,3 +1,4 @@ --- rundeck_api_version: 26 rundeck_remove_missing: true +rundeck_ignore_creation_error: true diff --git a/tasks/rundeck.yml b/tasks/rundeck.yml index 007b86e..1250d24 100644 --- a/tasks/rundeck.yml +++ b/tasks/rundeck.yml @@ -19,6 +19,18 @@ register: rundeck_create_jobs with_items: "{{ rundeck_jobs_files.files}}" +- name: Check if a job failed + fail: + msg: "Job defined in {{ file }} has failed with message: {{ message }}" + with_items: "{{ rundeck_create_jobs.results }}" + loop_control: + label: "{{ item.item.path }}" + vars: + file: "{{ item.item.path }}" + message: "{{ item.json.failed }}" + when: item.json.failed|length > 0 + ignore_errors: "{{ rundeck_ignore_creation_error }}" + - name: Get all jobs uri: url: "{{rundeck_api_url }}/{{rundeck_api_version}}/project/{{ rundeck_project }}/jobs?groupPathExact={{ rundeck_jobs_group | default(rundeck_empty_group_path) }}" -- cgit v1.2.3