Advertisement
Guest User

Untitled

a guest
Apr 25th, 2016
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. params:
  2.  
  3. TenantIpSubnet:
  4. default: '10.10.0.0/24'
  5. description: IP address/subnet on the tenant network
  6. type: string
  7. TenantNetworkVlanID:
  8. default: 100
  9. description: Vlan ID for the tenant network traffic.
  10. type: number
  11.  
  12. heat deploy plan ->
  13. -
  14. type: vlan
  15. device: bond0
  16. vlan_id: {get_param: TenantNetworkVlanID}
  17. addresses:
  18. -
  19. ip_netmask: {get_param: TenantIpSubnet}
  20.  
  21.  
  22.  
  23. Give me the correct VLAN ID but an provisioning ip configuration????
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement