Resolve ansible-lint name errors (#10253)

* project: fix ansible-lint name

Signed-off-by: Arthur Outhenin-Chalandre <arthur.outhenin-chalandre@proton.ch>

* project: ignore jinja template error in names

Signed-off-by: Arthur Outhenin-Chalandre <arthur.outhenin-chalandre@proton.ch>

* project: capitalize ansible name

Signed-off-by: Arthur Outhenin-Chalandre <arthur.outhenin-chalandre@proton.ch>

* project: update notify after name capitalization

Signed-off-by: Arthur Outhenin-Chalandre <arthur.outhenin-chalandre@proton.ch>

---------

Signed-off-by: Arthur Outhenin-Chalandre <arthur.outhenin-chalandre@proton.ch>
This commit is contained in:
Arthur Outhenin-Chalandre
2023-07-26 16:36:22 +02:00
committed by GitHub
parent b9e3861385
commit 36e5d742dc
162 changed files with 842 additions and 675 deletions

View File

@@ -1,6 +1,6 @@
---
- block:
- name: set default values for flag variables
- name: Set default values for flag variables
set_fact:
image_is_cached: false
image_changed: false
@@ -8,12 +8,12 @@
tags:
- facts
- name: download_container | Set a few facts
- name: Download_container | Set a few facts
import_tasks: set_container_facts.yml
tags:
- facts
- name: download_container | Prepare container download
- name: Download_container | Prepare container download
include_tasks: check_pull_required.yml
when:
- not download_always_pull
@@ -21,7 +21,7 @@
- debug: # noqa name[missing]
msg: "Pull {{ image_reponame }} required is: {{ pull_required }}"
- name: download_container | Determine if image is in cache
- name: Download_container | Determine if image is in cache
stat:
path: "{{ image_path_cached }}"
get_attributes: no
@@ -36,7 +36,7 @@
when:
- download_force_cache
- name: download_container | Set fact indicating if image is in cache
- name: Download_container | Set fact indicating if image is in cache
set_fact:
image_is_cached: "{{ cache_image.stat.exists }}"
tags:
@@ -52,7 +52,7 @@
- download_force_cache
- not download_run_once
- name: download_container | Download image if required
- name: Download_container | Download image if required
command: "{{ image_pull_command_on_localhost if download_localhost else image_pull_command }} {{ image_reponame }}"
delegate_to: "{{ download_delegate if download_run_once else inventory_hostname }}"
delegate_facts: yes
@@ -67,7 +67,7 @@
- pull_required or download_run_once
- not image_is_cached
- name: download_container | Save and compress image
- name: Download_container | Save and compress image
shell: "{{ image_save_command_on_localhost if download_localhost else image_save_command }}" # noqa command-instead-of-shell - image_save_command_on_localhost contains a pipe, therefore requires shell
delegate_to: "{{ download_delegate }}"
delegate_facts: no
@@ -79,7 +79,7 @@
- not image_is_cached
- download_run_once
- name: download_container | Copy image to ansible host cache
- name: Download_container | Copy image to ansible host cache
ansible.posix.synchronize:
src: "{{ image_path_final }}"
dest: "{{ image_path_cached }}"
@@ -91,7 +91,7 @@
- not download_localhost
- download_delegate == inventory_hostname
- name: download_container | Upload image to node if it is cached
- name: Download_container | Upload image to node if it is cached
ansible.posix.synchronize:
src: "{{ image_path_cached }}"
dest: "{{ image_path_final }}"
@@ -107,7 +107,7 @@
- pull_required
- download_force_cache
- name: download_container | Load image into the local container registry
- name: Download_container | Load image into the local container registry
shell: "{{ image_load_command }}" # noqa command-instead-of-shell - image_load_command uses pipes, therefore requires shell
register: container_load_status
failed_when: container_load_status is failed
@@ -115,7 +115,7 @@
- pull_required
- download_force_cache
- name: download_container | Remove container image from cache
- name: Download_container | Remove container image from cache
file:
state: absent
path: "{{ image_path_final }}"