Drive-by lint fix, actually enforce line length

This commit is contained in:
Shane McDonald
2021-11-19 08:16:34 +00:00
parent 5d934ff2b5
commit eaaf55e7f0
2 changed files with 4 additions and 2 deletions

View File

@@ -11,4 +11,3 @@ rules:
truthy: disable
line-length:
max: 170
level: warning

View File

@@ -60,7 +60,10 @@
- name: Set Init image URL
set_fact:
_init_container_image: "{{ _custom_init_container_image | default(lookup('env', 'RELATED_IMAGE_AWX_INIT_CONTAINER')) | default(_default_init_container_image, true) }}"
_init_container_image: |
{{ _custom_init_container_image |
default(lookup('env', 'RELATED_IMAGE_AWX_INIT_CONTAINER')) |
default(_default_init_container_image, true) }}
- name: Set default redis image
set_fact: