Skip to content

Commit bf434d8

Browse files
update typos tests (redhat-cop#950)
* update typos tests * move workflows temporarily
1 parent 5a649ee commit bf434d8

File tree

36 files changed

+161
-154
lines changed

36 files changed

+161
-154
lines changed
File renamed without changes.
File renamed without changes.

roles/controller_workflow_job_templates/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ This also speeds up the overall role.
6767
|`aap_configuration_async_delay`|1|no|This sets the delay between retries for the role globally.|
6868
|`controller_configuration_workflow_async_delay`|`aap_configuration_async_delay`|no|This sets the delay between retries for the role.|
6969
|`aap_configuration_loop_delay`|0|no|This sets the pause between each item in the loop for the roles globally. To help when API is getting overloaded.|
70-
|`controller_configuration_workflow__loop_delay`|`aap_configuration_loop_delay`|no|This sets the pause between each item in the loop for the role. To help when API is getting overloaded.|
70+
|`controller_configuration_workflow_loop_delay`|`aap_configuration_loop_delay`|no|This sets the pause between each item in the loop for the role. To help when API is getting overloaded.|
7171
|`aap_configuration_async_dir`|`null`|no|Sets the directory to write the results file for async tasks. The default value is set to `null` which uses the Ansible Default of `/root/.ansible_async/`.|
7272

7373
## Data Structure

roles/controller_workflow_job_templates/defaults/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ controller_workflows: []
44
workflow_job_templates_secure_logging: "{{ aap_configuration_secure_logging | default('false') }}"
55
controller_configuration_workflow_async_retries: "{{ aap_configuration_async_retries | default(30) }}"
66
controller_configuration_workflow_async_delay: "{{ aap_configuration_async_delay | default(1) }}"
7-
controller_configuration_workflow__loop_delay: "{{ aap_configuration_loop_delay | default(0) }}"
7+
controller_configuration_workflow_loop_delay: "{{ aap_configuration_loop_delay | default(0) }}"
88
aap_configuration_async_dir: null
99
controller_configuration_workflows_enforce_defaults: "{{ aap_configuration_enforce_defaults | default(false) }}"
1010
...

roles/controller_workflow_job_templates/tasks/add_workflows_schema.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
loop_control:
4040
loop_var: __workflow_loop_node_item
4141
label: "{{ __workflow_loop_item.name }}/{{ __workflow_loop_node_item.identifier }}"
42-
pause: "{{ controller_configuration_workflow__loop_delay }}"
42+
pause: "{{ controller_configuration_workflow_loop_delay }}"
4343
no_log: "{{ workflow_job_templates_secure_logging }}"
4444
async: "{{ ansible_check_mode | ternary(0, 1000) }}"
4545
poll: 0

roles/dispatch/defaults/main.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,10 @@ gateway_configuration_dispatcher_roles:
3939
- role: gateway_teams
4040
var: aap_teams
4141
tags: teams
42+
- role: gateway_users
43+
var: aap_user_accounts
44+
tags: teams
45+
4246
ah_configuration_dispatcher_roles:
4347
- role: hub_namespace
4448
var: ah_namespaces

roles/gateway_applications/tasks/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
changed_when: not __gateway_applications_job_async.changed
3636
vars:
3737
__operation: "{{ operation_translate[__gateway_application_item.state | default(platform_state) | default('present')] }}"
38-
ansible_async_dir: "{{ aap_configuration_async_dir | default(omit) }}"
38+
ansible_async_dir: "{{ aap_configuration_async_dir }}"
3939

4040
- name: Applications | Wait for finish the configuration
4141
ansible.builtin.async_status:
@@ -52,5 +52,5 @@
5252
no_log: "{{ applications_secure_logging }}"
5353
vars:
5454
__operation: "{{ operation_translate[__gateway_applications_job_async_results_item.state | default(platform_state) | default('present')] }}"
55-
ansible_async_dir: "{{ aap_configuration_async_dir | default(omit) }}"
55+
ansible_async_dir: "{{ aap_configuration_async_dir }}"
5656
...

roles/gateway_authenticator_maps/tasks/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
changed_when: not __gateway_authenticator_maps_job_async.changed
3434
vars:
3535
__operation: "{{ operation_translate[__gateway_authenticator_maps_item.state | default(platform_state) | default('present')] }}"
36-
ansible_async_dir: "{{ aap_configuration_async_dir | default(omit) }}"
36+
ansible_async_dir: "{{ aap_configuration_async_dir }}"
3737

3838
- name: Authenticator Map | Wait for finish the configuration
3939
ansible.builtin.async_status:
@@ -50,5 +50,5 @@
5050
no_log: "{{ gateway_authenticator_maps_secure_logging }}"
5151
vars:
5252
__operation: "{{ operation_translate[__gateway_authenticator_maps_job_async_results_item.state | default(platform_state) | default('present')] }}"
53-
ansible_async_dir: "{{ aap_configuration_async_dir | default(omit) }}"
53+
ansible_async_dir: "{{ aap_configuration_async_dir }}"
5454
...

roles/gateway_authenticators/tasks/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
changed_when: not __gateway_authenticators_job_async.changed
3232
vars:
3333
__operation: "{{ operation_translate[__gateway_authenticators_item.state | default(platform_state) | default('present')] }}"
34-
ansible_async_dir: "{{ aap_configuration_async_dir | default(omit) }}"
34+
ansible_async_dir: "{{ aap_configuration_async_dir }}"
3535

3636
- name: Authenticators | Wait for finish the configuration
3737
ansible.builtin.async_status:
@@ -48,5 +48,5 @@
4848
no_log: "{{gateway_authenticators_secure_logging }}"
4949
vars:
5050
__operation: "{{ operation_translate[__gateway_authenticators_job_async_results_item.state | default(platform_state) | default('present')] }}"
51-
ansible_async_dir: "{{ aap_configuration_async_dir | default(omit) }}"
51+
ansible_async_dir: "{{ aap_configuration_async_dir }}"
5252
...

roles/gateway_http_ports/tasks/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
changed_when: not __gateway_http_ports_job_async.changed
2828
vars:
2929
__operation: "{{ operation_translate[__gateway_http_ports_item.state | default(platform_state) | default('present')] }}"
30-
ansible_async_dir: "{{ aap_configuration_async_dir | default(omit) }}"
30+
ansible_async_dir: "{{ aap_configuration_async_dir }}"
3131

3232
- name: Http Ports | Wait for finish the configuration
3333
ansible.builtin.async_status:
@@ -44,5 +44,5 @@
4444
no_log: "{{ gateway_http_ports_secure_logging }}"
4545
vars:
4646
__operation: "{{ operation_translate[__gateway_http_ports_job_async_results_item.state | default(platform_state) | default('present')] }}"
47-
ansible_async_dir: "{{ aap_configuration_async_dir | default(omit) }}"
47+
ansible_async_dir: "{{ aap_configuration_async_dir }}"
4848
...

0 commit comments

Comments
 (0)