aboutsummaryrefslogtreecommitdiffstats
path: root/deployment/heat/onap-oom/parts/onap-oom-2.yaml
diff options
context:
space:
mode:
authorGary Wu <gary.i.wu@huawei.com>2018-10-28 21:44:00 -0700
committerGary Wu <gary.i.wu@huawei.com>2018-10-28 23:08:29 -0700
commit3fd6c2aac97baeb7e9a5d9f9d3a09fced70ddd37 (patch)
treec1589000a3ed90ee8336d2467da96ca6d3aa67a4 /deployment/heat/onap-oom/parts/onap-oom-2.yaml
parente713bfc403c64f4612d7205ff6d9cf9db693add9 (diff)
Enable k8s resiliency planes
Enable k8s resiliency planes and also reduce the number of k8s compute hosts down to 12 x 16 GB. Change-Id: I090495de2ac9986c0c85c19a503c44beca9e8fb6 Issue-ID: INT-586 Signed-off-by: Gary Wu <gary.i.wu@huawei.com>
Diffstat (limited to 'deployment/heat/onap-oom/parts/onap-oom-2.yaml')
-rw-r--r--deployment/heat/onap-oom/parts/onap-oom-2.yaml15
1 files changed, 8 insertions, 7 deletions
diff --git a/deployment/heat/onap-oom/parts/onap-oom-2.yaml b/deployment/heat/onap-oom/parts/onap-oom-2.yaml
index e01ba132d..ff2272d92 100644
--- a/deployment/heat/onap-oom/parts/onap-oom-2.yaml
+++ b/deployment/heat/onap-oom/parts/onap-oom-2.yaml
@@ -1,4 +1,4 @@
- ${K8S_VM_NAME}_private_port:
+ ${VM_TYPE}_${VM_NUM}_private_port:
type: OS::Neutron::Port
properties:
network: { get_resource: oam_network }
@@ -6,22 +6,22 @@
security_groups:
- { get_resource: onap_sg }
- ${K8S_VM_NAME}_floating_ip:
+ ${VM_TYPE}_${VM_NUM}_floating_ip:
type: OS::Neutron::FloatingIP
properties:
floating_network_id: { get_param: public_net_id }
- port_id: { get_resource: ${K8S_VM_NAME}_private_port }
+ port_id: { get_resource: ${VM_TYPE}_${VM_NUM}_private_port }
- ${K8S_VM_NAME}_vm:
+ ${VM_TYPE}_${VM_NUM}_vm:
type: OS::Nova::Server
properties:
name:
- list_join: ['-', [ { get_param: 'OS::stack_name' }, '${K8S_VM_NAME}']]
+ list_join: ['-', [ { get_param: 'OS::stack_name' }, '${VM_TYPE}', '${VM_NUM}' ] ]
image: { get_param: ubuntu_1604_image }
- flavor: { get_param: k8s_vm_flavor }
+ flavor: { get_param: ${VM_TYPE}_vm_flavor }
key_name: { get_param: key_name }
networks:
- - port: { get_resource: ${K8S_VM_NAME}_private_port }
+ - port: { get_resource: ${VM_TYPE}_${VM_NUM}_private_port }
user_data_format: RAW
user_data:
str_replace:
@@ -31,6 +31,7 @@
__docker_version__: { get_param: docker_version }
__rancher_ip_addr__: { get_attr: [rancher_floating_ip, floating_ip_address] }
__rancher_private_ip_addr__: { get_attr: [rancher_floating_ip, fixed_ip_address] }
+ __host_label__: '$HOST_LABEL'
template:
get_file: k8s_vm_entrypoint.sh