Gary Wu | ccd529b | 2018-01-16 18:31:01 -0800 | [diff] [blame] | 1 | heat_template_version: 2015-10-15 |
| 2 | description: ONAP on Kubernetes using OOM |
| 3 | |
| 4 | parameters: |
Gary Wu | ccd529b | 2018-01-16 18:31:01 -0800 | [diff] [blame] | 5 | docker_proxy: |
| 6 | type: string |
| 7 | |
| 8 | apt_proxy: |
| 9 | type: string |
| 10 | |
Gary Wu | c98156d | 2018-01-18 12:03:26 -0800 | [diff] [blame] | 11 | public_net_id: |
| 12 | type: string |
| 13 | description: The ID of the Public network for floating IP address allocation |
| 14 | |
Gary Wu | 60dd0d8 | 2018-01-18 14:54:47 -0800 | [diff] [blame] | 15 | public_net_name: |
| 16 | type: string |
| 17 | description: The name of the Public network referred by public_net_id |
| 18 | |
Gary Wu | c98156d | 2018-01-18 12:03:26 -0800 | [diff] [blame] | 19 | oam_network_cidr: |
| 20 | type: string |
| 21 | description: CIDR of the OAM ONAP network |
| 22 | |
| 23 | keystone_url: |
| 24 | type: string |
| 25 | description: URL of OpenStack Keystone |
| 26 | |
| 27 | openstack_tenant_id: |
| 28 | type: string |
| 29 | description: OpenStack tenant ID |
| 30 | |
| 31 | openstack_tenant_name: |
| 32 | type: string |
| 33 | description: OpenStack tenant name (matching with the openstack_tenant_id) |
| 34 | |
| 35 | openstack_username: |
| 36 | type: string |
| 37 | description: OpenStack username |
| 38 | |
| 39 | openstack_api_key: |
| 40 | type: string |
| 41 | description: OpenStack password or API Key |
| 42 | |
| 43 | ubuntu_1404_image: |
| 44 | type: string |
| 45 | description: Name of the Ubuntu 14.04 image |
| 46 | |
Gary Wu | 60dd0d8 | 2018-01-18 14:54:47 -0800 | [diff] [blame] | 47 | ubuntu_1604_image: |
| 48 | type: string |
| 49 | description: Name of the Ubuntu 16.04 image |
| 50 | |
| 51 | centos_7_image: |
| 52 | type: string |
| 53 | description: the id/name of the CentOS 7 VM imange |
| 54 | |
| 55 | rancher_vm_flavor: |
| 56 | type: string |
| 57 | description: Name of the Ubuntu 14.04 image |
| 58 | |
| 59 | k8s_vm_flavor: |
| 60 | type: string |
| 61 | description: Name of the Ubuntu 14.04 image |
| 62 | |
Gary Wu | 60dd0d8 | 2018-01-18 14:54:47 -0800 | [diff] [blame] | 63 | dns_forwarder: |
| 64 | type: string |
| 65 | description: the forwarder address for setting up ONAP's private DNS server |
| 66 | |
Gary Wu | 7b41639 | 2018-01-19 13:16:49 -0800 | [diff] [blame] | 67 | external_dns: |
| 68 | type: string |
| 69 | description: Public IP of the external DNS for ONAP network |
| 70 | |
| 71 | dnsaas_proxy_enable: |
| 72 | type: string |
| 73 | description: whether to enable DNSaaS proxy via multicloud |
| 74 | |
| 75 | dnsaas_region: |
| 76 | type: string |
| 77 | description: the region of the cloud instance providing the Designate DNS as a Service |
| 78 | |
Gary Wu | 52dfdcb | 2018-01-25 11:02:48 -0800 | [diff] [blame] | 79 | dnsaas_proxied_keystone_url_path: |
| 80 | type: string |
| 81 | description: the proxy keystone URL path for DCAE to use (via MultiCloud) |
| 82 | |
Gary Wu | 7b41639 | 2018-01-19 13:16:49 -0800 | [diff] [blame] | 83 | dnsaas_keystone_url: |
| 84 | type: string |
| 85 | description: the keystone URL of the cloud instance providing the Designate DNS as a Service |
| 86 | |
| 87 | dnsaas_username: |
| 88 | type: string |
| 89 | description: the username of the cloud instance providing the Designate DNS as a Service |
| 90 | |
| 91 | dnsaas_password: |
| 92 | type: string |
| 93 | description: the password of the cloud instance providing the Designate DNS as a Service |
| 94 | |
Gary Wu | 52dfdcb | 2018-01-25 11:02:48 -0800 | [diff] [blame] | 95 | dnsaas_tenant_id: |
| 96 | type: string |
| 97 | description: the ID of the tenant in the cloud instance providing the Designate DNS as a Service |
| 98 | |
Gary Wu | 7b41639 | 2018-01-19 13:16:49 -0800 | [diff] [blame] | 99 | dnsaas_tenant_name: |
| 100 | type: string |
| 101 | description: the name of the tenant in the cloud instance providing the Designate DNS as a Service |
| 102 | |
Gary Wu | ccd529b | 2018-01-16 18:31:01 -0800 | [diff] [blame] | 103 | resources: |
Gary Wu | c98156d | 2018-01-18 12:03:26 -0800 | [diff] [blame] | 104 | random-str: |
| 105 | type: OS::Heat::RandomString |
| 106 | properties: |
| 107 | length: 4 |
| 108 | |
Gary Wu | 52dfdcb | 2018-01-25 11:02:48 -0800 | [diff] [blame] | 109 | # ONAP management private network |
| 110 | oam_network: |
| 111 | type: OS::Neutron::Net |
| 112 | properties: |
| 113 | name: |
| 114 | str_replace: |
| 115 | template: oam_network_rand |
| 116 | params: |
| 117 | rand: { get_resource: random-str } |
| 118 | |
| 119 | oam_subnet: |
| 120 | type: OS::Neutron::Subnet |
| 121 | properties: |
| 122 | name: |
| 123 | str_replace: |
| 124 | template: oam_network_rand |
| 125 | params: |
| 126 | rand: { get_resource: random-str } |
| 127 | network_id: { get_resource: oam_network } |
| 128 | cidr: { get_param: oam_network_cidr } |
| 129 | dns_nameservers: [ get_param: dns_forwarder ] |
| 130 | |
| 131 | router: |
| 132 | type: OS::Neutron::Router |
| 133 | properties: |
| 134 | external_gateway_info: |
| 135 | network: { get_param: public_net_id } |
| 136 | |
| 137 | router_interface: |
| 138 | type: OS::Neutron::RouterInterface |
| 139 | properties: |
| 140 | router_id: { get_resource: router } |
| 141 | subnet_id: { get_resource: oam_subnet } |
| 142 | |
Gary Wu | 374498a | 2018-02-06 17:31:04 -0800 | [diff] [blame] | 143 | rancher_private_port: |
| 144 | type: OS::Neutron::Port |
| 145 | properties: |
| 146 | network: { get_resource: oam_network } |
| 147 | fixed_ips: [{"subnet": { get_resource: oam_subnet }}] |
| 148 | |
| 149 | rancher_floating_ip: |
| 150 | type: OS::Neutron::FloatingIP |
| 151 | properties: |
| 152 | floating_network_id: { get_param: public_net_id } |
| 153 | port_id: { get_resource: rancher_private_port } |
| 154 | |
Gary Wu | ccd529b | 2018-01-16 18:31:01 -0800 | [diff] [blame] | 155 | rancher_vm: |
| 156 | type: OS::Nova::Server |
| 157 | properties: |
| 158 | name: rancher |
Gary Wu | 558ac6e | 2018-01-19 14:53:12 -0800 | [diff] [blame] | 159 | image: { get_param: ubuntu_1604_image } |
Gary Wu | 60dd0d8 | 2018-01-18 14:54:47 -0800 | [diff] [blame] | 160 | flavor: { get_param: rancher_vm_flavor } |
Gary Wu | ccd529b | 2018-01-16 18:31:01 -0800 | [diff] [blame] | 161 | key_name: onap_key |
| 162 | networks: |
Gary Wu | 374498a | 2018-02-06 17:31:04 -0800 | [diff] [blame] | 163 | - port: { get_resource: rancher_private_port } |
Gary Wu | ccd529b | 2018-01-16 18:31:01 -0800 | [diff] [blame] | 164 | user_data_format: RAW |
| 165 | user_data: |
| 166 | str_replace: |
| 167 | params: |
| 168 | __docker_proxy__: { get_param: docker_proxy } |
| 169 | __apt_proxy__: { get_param: apt_proxy } |
Gary Wu | 1ff5667 | 2018-01-17 20:51:45 -0800 | [diff] [blame] | 170 | template: |
| 171 | get_file: rancher_vm_entrypoint.sh |
Gary Wu | ccd529b | 2018-01-16 18:31:01 -0800 | [diff] [blame] | 172 | |
Gary Wu | 52dfdcb | 2018-01-25 11:02:48 -0800 | [diff] [blame] | 173 | k8s_private_port: |
| 174 | type: OS::Neutron::Port |
| 175 | properties: |
| 176 | network: { get_resource: oam_network } |
| 177 | fixed_ips: [{"subnet": { get_resource: oam_subnet }}] |
| 178 | |
| 179 | k8s_floating_ip: |
| 180 | type: OS::Neutron::FloatingIP |
| 181 | properties: |
| 182 | floating_network_id: { get_param: public_net_id } |
| 183 | port_id: { get_resource: k8s_private_port } |
| 184 | |
Gary Wu | ccd529b | 2018-01-16 18:31:01 -0800 | [diff] [blame] | 185 | k8s_vm: |
| 186 | type: OS::Nova::Server |
| 187 | properties: |
| 188 | name: k8s |
Gary Wu | 558ac6e | 2018-01-19 14:53:12 -0800 | [diff] [blame] | 189 | image: { get_param: ubuntu_1604_image } |
Gary Wu | 60dd0d8 | 2018-01-18 14:54:47 -0800 | [diff] [blame] | 190 | flavor: { get_param: k8s_vm_flavor } |
Gary Wu | ccd529b | 2018-01-16 18:31:01 -0800 | [diff] [blame] | 191 | key_name: onap_key |
| 192 | networks: |
Gary Wu | 52dfdcb | 2018-01-25 11:02:48 -0800 | [diff] [blame] | 193 | - port: { get_resource: k8s_private_port } |
Gary Wu | ccd529b | 2018-01-16 18:31:01 -0800 | [diff] [blame] | 194 | user_data_format: RAW |
| 195 | user_data: |
| 196 | str_replace: |
| 197 | params: |
| 198 | __docker_proxy__: { get_param: docker_proxy } |
| 199 | __apt_proxy__: { get_param: apt_proxy } |
Gary Wu | 5d325d0 | 2018-02-06 21:21:31 -0800 | [diff] [blame^] | 200 | __rancher_ip_addr__: { get_attr: [rancher_floating_ip, floating_ip_address] } |
Gary Wu | 52dfdcb | 2018-01-25 11:02:48 -0800 | [diff] [blame] | 201 | __k8s_ip_addr__: { get_attr: [k8s_floating_ip, floating_ip_address] } |
Gary Wu | c98156d | 2018-01-18 12:03:26 -0800 | [diff] [blame] | 202 | __openstack_tenant_id__: { get_param: openstack_tenant_id } |
| 203 | __openstack_tenant_name__: { get_param: openstack_tenant_name } |
| 204 | __openstack_username__: { get_param: openstack_username } |
| 205 | __openstack_api_key__: { get_param : openstack_api_key } |
| 206 | __public_net_id__: { get_param: public_net_id } |
Gary Wu | 60dd0d8 | 2018-01-18 14:54:47 -0800 | [diff] [blame] | 207 | __public_net_name__: { get_param: public_net_name } |
Gary Wu | 52dfdcb | 2018-01-25 11:02:48 -0800 | [diff] [blame] | 208 | __oam_network_id__: { get_resource: oam_network } |
Gary Wu | c98156d | 2018-01-18 12:03:26 -0800 | [diff] [blame] | 209 | __oam_network_cidr__: { get_param: oam_network_cidr } |
| 210 | __ubuntu_1404_image__: { get_param: ubuntu_1404_image } |
Gary Wu | 60dd0d8 | 2018-01-18 14:54:47 -0800 | [diff] [blame] | 211 | __ubuntu_1604_image__: { get_param: ubuntu_1604_image } |
| 212 | __centos_7_image__: { get_param: centos_7_image } |
Gary Wu | c98156d | 2018-01-18 12:03:26 -0800 | [diff] [blame] | 213 | __keystone_url__: { get_param: keystone_url } |
Gary Wu | 60dd0d8 | 2018-01-18 14:54:47 -0800 | [diff] [blame] | 214 | __dns_forwarder__: { get_param: dns_forwarder } |
Gary Wu | 7b41639 | 2018-01-19 13:16:49 -0800 | [diff] [blame] | 215 | __external_dns__: { get_param: external_dns } |
| 216 | __dnsaas_proxy_enable__: { get_param: dnsaas_proxy_enable } |
Gary Wu | 52dfdcb | 2018-01-25 11:02:48 -0800 | [diff] [blame] | 217 | __dnsaas_proxied_keystone_url_path__: { get_param: dnsaas_proxied_keystone_url_path } |
Gary Wu | 7b41639 | 2018-01-19 13:16:49 -0800 | [diff] [blame] | 218 | __dnsaas_keystone_url__: { get_param: dnsaas_keystone_url } |
| 219 | __dnsaas_region__: { get_param: dnsaas_region } |
Gary Wu | 52dfdcb | 2018-01-25 11:02:48 -0800 | [diff] [blame] | 220 | __dnsaas_tenant_id__: { get_param: dnsaas_tenant_id } |
Gary Wu | 7b41639 | 2018-01-19 13:16:49 -0800 | [diff] [blame] | 221 | __dnsaas_tenant_name__: { get_param: dnsaas_tenant_name } |
| 222 | __dnsaas_username__: { get_param: dnsaas_username } |
| 223 | __dnsaas_password__: { get_param: dnsaas_password } |
Gary Wu | 1ff5667 | 2018-01-17 20:51:45 -0800 | [diff] [blame] | 224 | template: |
| 225 | get_file: k8s_vm_entrypoint.sh |
Gary Wu | 7b41639 | 2018-01-19 13:16:49 -0800 | [diff] [blame] | 226 | |
Gary Wu | 14ee41d | 2018-01-19 15:03:59 -0800 | [diff] [blame] | 227 | outputs: |
Gary Wu | 6103408 | 2018-01-22 12:48:50 -0800 | [diff] [blame] | 228 | rancher_vm_ip: |
| 229 | description: The IP address of the rancher instance |
Gary Wu | 5d325d0 | 2018-02-06 21:21:31 -0800 | [diff] [blame^] | 230 | value: { get_attr: [rancher_floating_ip, floating_ip_address] } |
Gary Wu | 6103408 | 2018-01-22 12:48:50 -0800 | [diff] [blame] | 231 | |
Gary Wu | 14ee41d | 2018-01-19 15:03:59 -0800 | [diff] [blame] | 232 | k8s_vm_ip: |
| 233 | description: The IP address of the k8s instance |
Gary Wu | 52dfdcb | 2018-01-25 11:02:48 -0800 | [diff] [blame] | 234 | value: { get_attr: [k8s_floating_ip, floating_ip_address] } |