Skip to content

Commit 6679b59

Browse files
committed
Fix warnings
1 parent 91d4349 commit 6679b59

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

etc/kayobe/ansible/deploy-os-capacity-exporter.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,17 +31,17 @@
3131

3232
- name: Set facts for admin credentials
3333
ansible.builtin.set_fact:
34-
stackhpc_os_capacity_auth_url: "{{ credential.stdout_lines | select('match', '.*OS_AUTH_URL*.')\
34+
stackhpc_os_capacity_auth_url: "{{ credential.stdout_lines | select('match', '.*OS_AUTH_URL*.') \
3535
| first | split('=') | last | replace(\"'\", '') }}"
36-
stackhpc_os_capacity_project_name: "{{ credential.stdout_lines | select('match', '.*OS_PROJECT_NAME*.')\
36+
stackhpc_os_capacity_project_name: "{{ credential.stdout_lines | select('match', '.*OS_PROJECT_NAME*.') \
3737
| first | split('=') | last | replace(\"'\", '') }}"
38-
stackhpc_os_capacity_domain_name: "{{ credential.stdout_lines | select('match', '.*OS_PROJECT_DOMAIN_NAME*.')\
38+
stackhpc_os_capacity_domain_name: "{{ credential.stdout_lines | select('match', '.*OS_PROJECT_DOMAIN_NAME*.') \
3939
| first | split('=') | last | replace(\"'\", '') }}"
40-
stackhpc_os_capacity_openstack_region_name: "{{ credential.stdout_lines | select('match', '.*OS_REGION_NAME*.')\
40+
stackhpc_os_capacity_openstack_region_name: "{{ credential.stdout_lines | select('match', '.*OS_REGION_NAME*.') \
4141
| first | split('=') | last | replace(\"'\", '') }}"
42-
stackhpc_os_capacity_username: "{{ credential.stdout_lines | select('match', '.*OS_USERNAME*.')\
42+
stackhpc_os_capacity_username: "{{ credential.stdout_lines | select('match', '.*OS_USERNAME*.') \
4343
| first | split('=') | last | replace(\"'\", '') }}"
44-
stackhpc_os_capacity_password: "{{ credential.stdout_lines | select('match', '.*OS_PASSWORD*.')\
44+
stackhpc_os_capacity_password: "{{ credential.stdout_lines | select('match', '.*OS_PASSWORD*.') \
4545
| first | split('=') | last | replace(\"'\", '') }}"
4646
when: stackhpc_enable_os_capacity
4747

etc/kayobe/ansible/run-container-hotfix.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,5 @@
2222

2323
- name: Run container_hotfix_command
2424
ansible.builtin.command: "{{ kolla_container_engine | default('docker') }} exec \
25-
{{ '-u 0' if container_hotfix_become else '' }} {{ hotfix_container }} {{ container_hotfix_command}}"
25+
{{ '-u 0' if container_hotfix_become else '' }} {{ hotfix_container }} {{ container_hotfix_command }}"
2626
when: container_hotfix_command

0 commit comments

Comments
 (0)