🚨 roles: cleanuri: Fix fqcn linter warnings
fqcn[action]: Use FQCN for module actions, such `community.docker.docker_container`. roles/cleanuri/tasks/main.yml:3 Action `docker_container` is not FQCN. fqcn[action-core]: Use FQCN for builtin module actions (include_role). roles/cleanuri/tasks/main.yml:17 Use `ansible.builtin.include_role` or `ansible.legacy.include_role` instead. fqcn[action]: Use FQCN for module actions, such `community.docker.docker_container`. roles/cleanuri/tasks/main.yml:25 Action `docker_container` is not FQCN. fqcn[action]: Use FQCN for module actions, such `community.docker.docker_container`. roles/cleanuri/tasks/main.yml:44 Action `docker_container` is not FQCN. fqcn[action]: Use FQCN for module actions, such `community.docker.docker_container`. roles/cleanuri/tasks/main.yml:61 Action `docker_container` is not FQCN. fqcn[action-core]: Use FQCN for builtin module actions (include_role). roles/cleanuri/tasks/main.yml:78 Use `ansible.builtin.include_role` or `ansible.legacy.include_role` instead.
This commit is contained in:
parent
11e98a4d8e
commit
8b54b36392
1 changed files with 6 additions and 6 deletions
|
@ -1,7 +1,7 @@
|
|||
# Tasks for the cleanuri role
|
||||
---
|
||||
- name: Ensure CleanURI WebUI is running
|
||||
docker_container:
|
||||
community.docker.docker_container:
|
||||
name: cleanuri-webui
|
||||
image: "{{ cleanuri_image_webui }}"
|
||||
pull: true
|
||||
|
@ -15,7 +15,7 @@
|
|||
REACT_APP_API_GATEWAY: "https://{{ cleanuri_api_domain }}"
|
||||
|
||||
- name: Setup proxy site for the CleanURI WebUI
|
||||
include_role:
|
||||
ansible.builtin.include_role:
|
||||
name: setup_http_site_proxy
|
||||
vars:
|
||||
site_name: "{{ cleanuri_ui_domain }}"
|
||||
|
@ -23,7 +23,7 @@
|
|||
|
||||
|
||||
- name: Ensure CleanURI API Gateway is running
|
||||
docker_container:
|
||||
community.docker.docker_container:
|
||||
name: cleanuri-apigateway
|
||||
image: "{{ cleanuri_image_apigateway }}"
|
||||
pull: true
|
||||
|
@ -42,7 +42,7 @@
|
|||
GATEWAY_TASK_RK: "{{ cleanuri_amqp_canonizer }}"
|
||||
|
||||
- name: Ensure CleanURI Canonizer is running
|
||||
docker_container:
|
||||
community.docker.docker_container:
|
||||
name: cleanuri-canonizer
|
||||
image: "{{ cleanuri_image_canonizer }}"
|
||||
pull: true
|
||||
|
@ -59,7 +59,7 @@
|
|||
EXTRACTOR_TASK_RK: "{{ cleanuri_amqp_retrieval }}"
|
||||
|
||||
- name: Ensure CleanURI Extractor is running
|
||||
docker_container:
|
||||
community.docker.docker_container:
|
||||
name: cleanuri-extractor
|
||||
image: "{{ cleanuri_image_extractor }}"
|
||||
pull: true
|
||||
|
@ -76,7 +76,7 @@
|
|||
|
||||
|
||||
- name: Setup proxy site the CleanURI API Gateway
|
||||
include_role:
|
||||
ansible.builtin.include_role:
|
||||
name: setup_http_site_proxy
|
||||
vars:
|
||||
site_name: "{{ cleanuri_api_domain }}"
|
||||
|
|
Loading…
Add table
Reference in a new issue