Merge "Use new openstack.cloud collection names"

This commit is contained in:
Zuul 2021-03-19 21:11:41 +00:00 committed by Gerrit Code Review
commit 8f6d7d0a74

View File

@ -38,7 +38,7 @@
with_items: "{{ magnum_glance_images }}"
- name: Upload images to Glance
openstack.cloud.os_image:
openstack.cloud.image:
cloud: "{{ item.cloud | default('default') }}"
state: "{{ item.state | default('present') }}"
interface: "{{ item.interface | default('admin') }}"
@ -57,7 +57,7 @@
with_items: "{{ magnum_glance_images }}"
- name: Create flavors for Magnum
openstack.cloud.os_nova_flavor:
openstack.cloud.compute_flavor:
cloud: "{{ item.cloud | default('default') }}"
state: "{{ item.state | default('present') }}"
is_public: "{{ item.is_public | default(omit) }}"
@ -76,7 +76,7 @@
with_items: "{{ magnum_flavors }}"
- name: Create Magnum cluster templates
openstack.cloud.os_coe_cluster_template:
openstack.cloud.coe_cluster_template:
cloud: "{{ item.cloud | default('default') }}"
state: "{{ item.state | default('present') }}"
interface: "{{ item.interface | default('admin') }}"