Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions examples/flavors.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ openstack_flavors:
- "{{ openstack_flavor_m1_medium }}"
- "{{ openstack_flavor_m1_large }}"
- "{{ openstack_flavor_m1_xlarge }}"
- "{{ openstack_flavor_m1_tiny_projectA }}"
- "{{ openstack_flavor_m1_tiny_projectB }}"

# Virtual machine flavors.
openstack_flavor_m1_tiny:
Expand Down Expand Up @@ -41,3 +43,29 @@ openstack_flavor_m1_xlarge:
ram: 16384
disk: 100
vcpus: 8


Comment on lines +46 to +47
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Remove extra lines


# Example of flavors with configured project access to them. "is_public"
# parameter is mandatory in such case.
openstack_flavor_projects:
- "demo"
- "project_a"

openstack_flavor_m1_tiny_privateA:
name: "m1.tiny_private"
ram: 512
disk: 1
vcpus: 1
project: "{{ openstack_flavor_projects }}"
is_public: "false"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can we change "false" to false? It looks nicer.


openstack_flavor_m1_tiny_privateB:
name: "m1.tiny_private2"
ram: 512
disk: 1
vcpus: 1
project:
- "project_b"
- "demo"
is_public: "false"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Extra new line at the end

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can we change "false" to false? It looks nicer.