Advertisement
Guest User

Untitled

a guest
May 9th, 2014
190
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.75 KB | None | 0 0
  1. heat_template_version: 2013-05-23
  2.  
  3. description: >
  4. HOT template to deploy two servers into an existing neutron tenant network and
  5. assign floating IP addresses to each server so they are routable from the
  6. public network.
  7.  
  8. parameters:
  9. key_name:
  10. type: string
  11. description: Name of keypair to assign to servers
  12. image:
  13. type: string
  14. description: Name of image to use for servers
  15. flavor:
  16. type: string
  17. description: Flavor to use for servers
  18. public_net_id:
  19. type: string
  20. description: >
  21. ID of public network for which floating IP addresses will be allocated
  22. private_net_id:
  23. type: string
  24. description: ID of private network into which servers get deployed
  25. private_subnet_id:
  26. type: string
  27. description: ID of private sub network into which servers get deployed
  28.  
  29. resources:
  30. server1:
  31. type: OS::Nova::Server
  32. properties:
  33. name: Server1
  34. image: { get_param: image }
  35. flavor: { get_param: flavor }
  36. key_name: { get_param: key_name }
  37. networks:
  38. - port: { get_resource: server1_port }
  39.  
  40. server1_port:
  41. type: OS::Neutron::Port
  42. properties:
  43. network_id: { get_param: private_net_id }
  44. fixed_ips:
  45. - subnet_id: { get_param: private_subnet_id }
  46.  
  47. server1_floating_ip:
  48. type: OS::Neutron::FloatingIP
  49. properties:
  50. floating_network_id: { get_param: public_net_id }
  51. port_id: { get_resource: server1_port }
  52.  
  53. outputs:
  54. server1_private_ip:
  55. description: IP address of server1 in private network
  56. value: { get_attr: [ server1, first_address ] }
  57. server1_public_ip:
  58. description: Floating IP address of server1 in public network
  59. value: { get_attr: [ server1_floating_ip, floating_ip_address ] }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement