Advertisement
Guest User

Untitled

a guest
Nov 9th, 2016
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 1.25 KB | None | 0 0
  1. resources:
  2.   OsNetConfigImpl:
  3.     type: OS::Heat::StructuredConfig
  4.     properties:
  5.       group: os-apply-config
  6.       config:
  7.         os_net_config:
  8.           network_config:
  9.            -
  10.               type: interface # mgmt interface eth1
  11.               name: nic2
  12.               use_dhcp: false
  13.               addresses:
  14.                -
  15.                   ip_netmask: {get_param: ExternalIpSubnet}
  16.               routes:
  17.                -
  18.                   default: true
  19.                   next_hop: {get_param: ExternalInterfaceDefaultRoute}
  20.             -
  21.               type: interface
  22.               name: nic1
  23.               use_dhcp: false
  24.             -
  25.               type: vlan
  26.               vlan_id: {get_param: InternalApiNetworkVlanID}
  27.               addresses:
  28.                -
  29.                   ip_netmask: {get_param: InternalApiIpSubnet}
  30.             -
  31.               type: vlan
  32.               vlan_id: {get_param: StorageNetworkVlanID}
  33.               addresses:
  34.                -
  35.                   ip_netmask: {get_param: StorageIpSubnet}
  36.             -
  37.               type: vlan
  38.               vlan_id: {get_param: TenantNetworkVlanID}
  39.               addresses:
  40.                -
  41.                   ip_netmask: {get_param: TenantIpSubnet}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement