Skip to content

Commit

Permalink
Replace callback_whitelist with callbacks_enabled (#8759)
Browse files Browse the repository at this point in the history
When running molecule jobs, we saw the folloing warning message:

 [DEPRECATION WARNING]: [defaults]callback_whitelist option, normalizing names
 to new standard, use callbacks_enabled instead. This feature will be removed
 from ansible-core in version 2.15. Deprecation warnings can be disabled by
 setting deprecation_warnings=False in ansible.cfg.

callbacks_enabled has been added since Ansible 2.11 and Kubespray is using
Ansible 2.12 at master branch. So we can use callbacks_enabled safely to
avoid the warning message.
  • Loading branch information
oomichi authored Jun 9, 2022
1 parent cd7381d commit 024a3ee
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion ansible.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ fact_caching_timeout = 7200
stdout_callback = default
display_skipped_hosts = no
library = ./library
callback_whitelist = profile_tasks,ara_default
callbacks_enabled = profile_tasks,ara_default
roles_path = roles:$VIRTUAL_ENV/usr/local/share/kubespray/roles:$VIRTUAL_ENV/usr/local/share/ansible/roles:/usr/share/kubespray/roles
deprecation_warnings=False
inventory_ignore_extensions = ~, .orig, .bak, .ini, .cfg, .retry, .pyc, .pyo, .creds, .gpg
Expand Down
2 changes: 1 addition & 1 deletion roles/adduser/molecule/default/molecule.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ provisioner:
name: ansible
config_options:
defaults:
callback_whitelist: profile_tasks
callbacks_enabled: profile_tasks
timeout: 120
lint:
name: ansible-lint
Expand Down
2 changes: 1 addition & 1 deletion roles/bastion-ssh-config/molecule/default/molecule.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ provisioner:
name: ansible
config_options:
defaults:
callback_whitelist: profile_tasks
callbacks_enabled: profile_tasks
timeout: 120
lint:
name: ansible-lint
Expand Down
2 changes: 1 addition & 1 deletion roles/bootstrap-os/molecule/default/molecule.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ provisioner:
name: ansible
config_options:
defaults:
callback_whitelist: profile_tasks
callbacks_enabled: profile_tasks
timeout: 120
lint:
name: ansible-lint
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ provisioner:
ANSIBLE_ROLES_PATH: ../../../../
config_options:
defaults:
callback_whitelist: profile_tasks
callbacks_enabled: profile_tasks
timeout: 120
lint:
name: ansible-lint
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ provisioner:
ANSIBLE_ROLES_PATH: ../../../../
config_options:
defaults:
callback_whitelist: profile_tasks
callbacks_enabled: profile_tasks
timeout: 120
lint:
name: ansible-lint
Expand Down
2 changes: 1 addition & 1 deletion roles/container-engine/cri-o/molecule/default/molecule.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ provisioner:
ANSIBLE_ROLES_PATH: ../../../../
config_options:
defaults:
callback_whitelist: profile_tasks
callbacks_enabled: profile_tasks
timeout: 120
lint:
name: ansible-lint
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ provisioner:
ANSIBLE_ROLES_PATH: ../../../../
config_options:
defaults:
callback_whitelist: profile_tasks
callbacks_enabled: profile_tasks
timeout: 120
lint:
name: ansible-lint
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ provisioner:
ANSIBLE_ROLES_PATH: ../../../../
config_options:
defaults:
callback_whitelist: profile_tasks
callbacks_enabled: profile_tasks
timeout: 120
lint:
name: ansible-lint
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ provisioner:
ANSIBLE_ROLES_PATH: ../../../../
config_options:
defaults:
callback_whitelist: profile_tasks
callbacks_enabled: profile_tasks
timeout: 120
lint:
name: ansible-lint
Expand Down
2 changes: 1 addition & 1 deletion roles/container-engine/youki/molecule/default/molecule.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ provisioner:
ANSIBLE_ROLES_PATH: ../../../../
config_options:
defaults:
callback_whitelist: profile_tasks
callbacks_enabled: profile_tasks
timeout: 120
lint:
name: ansible-lint
Expand Down
2 changes: 1 addition & 1 deletion tests/ansible.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ fact_caching = jsonfile
fact_caching_connection = /tmp
stdout_callback = skippy
library = ./library:../library
callback_whitelist = profile_tasks
callbacks_enabled = profile_tasks
jinja2_extensions = jinja2.ext.do

0 comments on commit 024a3ee

Please sign in to comment.