Adjust action groups to moved modules (#72428)
* Support docker and k8s action groups for moved modules in community.docker and community.kubevirt.
* Also support k8s action group for community.okd.
* Also add kubernetes.core.
* Adjust PR #.
* Fix changelog fragment.
* Remove community.okd.
* Revert "Remove community.okd."
This reverts commit 812b5aa6e2
.
This commit is contained in:
parent
d8c637da37
commit
c7a4b39633
2 changed files with 4 additions and 2 deletions
2
changelogs/fragments/72428-action-groups-docker-k8s.yml
Normal file
2
changelogs/fragments/72428-action-groups-docker-k8s.yml
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
bugfixes:
|
||||||
|
- "The ``docker`` and ``k8s`` action groups / module default groups now also support the moved modules in `community.docker <https://galaxy.ansible.com/community/docker>`_, `community.kubevirt <https://github.com/ansible-collections/community.kubevirt>`_, `community.okd <https://galaxy.ansible.com/community/okd>`_, and `kubernetes.core <https://galaxy.ansible.com/kubernetes/core>`_ (https://github.com/ansible/ansible/pull/72428)."
|
|
@ -1357,9 +1357,9 @@ def get_action_args_with_defaults(action, args, defaults, templar, redirected_na
|
||||||
'aws': ['amazon.aws', 'community.aws'],
|
'aws': ['amazon.aws', 'community.aws'],
|
||||||
'azure': ['azure.azcollection'],
|
'azure': ['azure.azcollection'],
|
||||||
'cpm': ['wti.remote'],
|
'cpm': ['wti.remote'],
|
||||||
'docker': ['community.general'],
|
'docker': ['community.general', 'community.docker'],
|
||||||
'gcp': ['google.cloud'],
|
'gcp': ['google.cloud'],
|
||||||
'k8s': ['community.kubernetes', 'community.general'],
|
'k8s': ['community.kubernetes', 'community.general', 'community.kubevirt', 'community.okd', 'kubernetes.core'],
|
||||||
'os': ['openstack.cloud'],
|
'os': ['openstack.cloud'],
|
||||||
'ovirt': ['ovirt.ovirt', 'community.general'],
|
'ovirt': ['ovirt.ovirt', 'community.general'],
|
||||||
'vmware': ['community.vmware'],
|
'vmware': ['community.vmware'],
|
||||||
|
|
Loading…
Reference in a new issue