Skip to content

Commit 385ae72

Browse files
committed
Remove yaml callback from env
Similar to openstack-k8s-operators/install_yamls#1105. Fixes the broken adoption jobs. The 'community.general.yaml' callback plugin has been removed from ansible. It has been superseded by the option result_format=yaml in callback plugin ansible.builtin.default from ansible-core 2.13 onwards. Signed-off-by: rabi <[email protected]>
1 parent 6cdf63f commit 385ae72

File tree

1 file changed

+6
-2
lines changed
  • tests/roles/dataplane_adoption/defaults

1 file changed

+6
-2
lines changed

tests/roles/dataplane_adoption/defaults/main.yaml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,9 @@ dataplane_cr: |
202202
{%+ endif +%}
203203
env:
204204
- name: ANSIBLE_CALLBACKS_ENABLED
205-
value: "ansible.posix.profile_tasks,yaml"
205+
value: "ansible.posix.profile_tasks"
206+
- name: ANSIBLE_CALLBACK_RESULT_FORMAT
207+
value: "yaml"
206208
- name: ANSIBLE_FORCE_COLOR
207209
value: "True"
208210
- name: ANSIBLE_DISPLAY_ARGS_TO_STDOUT
@@ -331,7 +333,9 @@ networker_cr: |
331333
- neutron-metadata
332334
env:
333335
- name: ANSIBLE_CALLBACKS_ENABLED
334-
value: "ansible.posix.profile_tasks,yaml"
336+
value: "ansible.posix.profile_tasks"
337+
- name: ANSIBLE_CALLBACK_RESULT_FORMAT
338+
value: "yaml"
335339
- name: ANSIBLE_FORCE_COLOR
336340
value: "True"
337341
- name: ANSIBLE_DISPLAY_ARGS_TO_STDOUT

0 commit comments

Comments
 (0)