heat_stack_subports.yaml.j2 664 B

12345678910111213141516171819202122232425262728
  1. heat_template_version: {{ openshift_openstack_heat_template_version }}
  2. description: Template to create subports
  3. parameters:
  4. network:
  5. type: string
  6. label: Subport Network
  7. subnet:
  8. type: string
  9. label: Subport Subnet
  10. pod_access_sg:
  11. type: comma_delimited_list
  12. label: Pod access sg
  13. resources:
  14. subports:
  15. type: OS::Neutron::Port
  16. properties:
  17. network: { get_param: network }
  18. security_groups: { get_param: pod_access_sg }
  19. fixed_ips:
  20. - subnet: { get_param: subnet }
  21. device_owner: {{ openshift_kuryr_device_owner|default('compute:kuryr') }}
  22. outputs:
  23. subport_id:
  24. value: { get_resource: subports }