aboutsummaryrefslogtreecommitdiffstats
path: root/deployment
diff options
context:
space:
mode:
authorGary Wu <gary.i.wu@huawei.com>2019-03-29 09:14:49 -0700
committerGary Wu <gary.i.wu@huawei.com>2019-03-29 09:14:49 -0700
commitaa86fba165281a8a442317d04aa22d4406162da1 (patch)
tree46d1ce0ecc676ac691a78da2b98b1d800babb9bf /deployment
parenta2f942369425233e9029bdce452cd3a363e617cb (diff)
Change k8s to 6 x 32 GB VMs
Try 6 x 32 GB deployment instead of the previous 12 x 16 GB to cut down on the coordination traffic. Change-Id: I7228f034b7d1c8c1b075ddf5e1d6a5db8187b29b Issue-ID: INT-993 Signed-off-by: Gary Wu <gary.i.wu@huawei.com>
Diffstat (limited to 'deployment')
-rw-r--r--deployment/heat/onap-oom/env/windriver/onap-oom.env2
-rw-r--r--deployment/heat/onap-oom/onap-oom.yaml456
2 files changed, 1 insertions, 457 deletions
diff --git a/deployment/heat/onap-oom/env/windriver/onap-oom.env b/deployment/heat/onap-oom/env/windriver/onap-oom.env
index ede1e5b2b..ace449c31 100644
--- a/deployment/heat/onap-oom/env/windriver/onap-oom.env
+++ b/deployment/heat/onap-oom/env/windriver/onap-oom.env
@@ -6,7 +6,7 @@ parameters:
docker_proxy: 10.12.5.2:5000
rancher_vm_flavor: m1.xlarge
- k8s_vm_flavor: m1.xlarge
+ k8s_vm_flavor: m2.xlarge
etcd_vm_flavor: m1.medium
orch_vm_flavor: m1.medium
diff --git a/deployment/heat/onap-oom/onap-oom.yaml b/deployment/heat/onap-oom/onap-oom.yaml
index 1f6f7d29a..66c98ee83 100644
--- a/deployment/heat/onap-oom/onap-oom.yaml
+++ b/deployment/heat/onap-oom/onap-oom.yaml
@@ -241,12 +241,6 @@ resources:
get_attr: [k8s_04_floating_ip, floating_ip_address],
get_attr: [k8s_05_floating_ip, floating_ip_address],
get_attr: [k8s_06_floating_ip, floating_ip_address],
- get_attr: [k8s_07_floating_ip, floating_ip_address],
- get_attr: [k8s_08_floating_ip, floating_ip_address],
- get_attr: [k8s_09_floating_ip, floating_ip_address],
- get_attr: [k8s_10_floating_ip, floating_ip_address],
- get_attr: [k8s_11_floating_ip, floating_ip_address],
- get_attr: [k8s_12_floating_ip, floating_ip_address],
]
__k8s_private_ips__: [
get_attr: [k8s_01_floating_ip, fixed_ip_address],
@@ -255,12 +249,6 @@ resources:
get_attr: [k8s_04_floating_ip, fixed_ip_address],
get_attr: [k8s_05_floating_ip, fixed_ip_address],
get_attr: [k8s_06_floating_ip, fixed_ip_address],
- get_attr: [k8s_07_floating_ip, fixed_ip_address],
- get_attr: [k8s_08_floating_ip, fixed_ip_address],
- get_attr: [k8s_09_floating_ip, fixed_ip_address],
- get_attr: [k8s_10_floating_ip, fixed_ip_address],
- get_attr: [k8s_11_floating_ip, fixed_ip_address],
- get_attr: [k8s_12_floating_ip, fixed_ip_address],
]
k8s_01_private_port:
type: OS::Neutron::Port
@@ -682,426 +670,6 @@ resources:
user_data_format: SOFTWARE_CONFIG
user_data: { get_resource: k8s_06_vm_config }
- k8s_07_private_port:
- type: OS::Neutron::Port
- properties:
- network: { get_resource: oam_network }
- fixed_ips: [{"subnet": { get_resource: oam_subnet }}]
- security_groups:
- - { get_resource: onap_sg }
-
- k8s_07_floating_ip:
- type: OS::Neutron::FloatingIP
- properties:
- floating_network_id: { get_param: public_net_id }
- port_id: { get_resource: k8s_07_private_port }
-
- k8s_07_vm_scripts:
- type: OS::Heat::CloudConfig
- properties:
- cloud_config:
- power_state:
- mode: reboot
- runcmd:
- - [ /opt/k8s_vm_install.sh ]
- write_files:
- - path: /opt/k8s_vm_install.sh
- permissions: '0755'
- content:
- str_replace:
- params:
- __docker_proxy__: { get_param: docker_proxy }
- __apt_proxy__: { get_param: apt_proxy }
- __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_private_ip_addr__: { get_attr: [k8s_07_floating_ip, fixed_ip_address] }
- __mtu__: { get_param: mtu }
- template:
- get_file: k8s_vm_install.sh
- - path: /opt/k8s_vm_init.sh
- permissions: '0755'
- content:
- str_replace:
- params:
- __host_private_ip_addr__: { get_attr: [k8s_07_floating_ip, fixed_ip_address] }
- __host_label__: 'compute'
- template:
- get_file: k8s_vm_init.sh
- - path: /etc/init.d/k8s_vm_init_serv
- permissions: '0755'
- content:
- get_file: k8s_vm_init_serv.sh
-
- k8s_07_vm_config:
- type: OS::Heat::MultipartMime
- properties:
- parts:
- - config: { get_resource: k8s_07_vm_scripts }
-
- k8s_07_vm:
- type: OS::Nova::Server
- properties:
- name:
- list_join: ['-', [ { get_param: 'OS::stack_name' }, 'k8s', '07' ] ]
- image: { get_param: ubuntu_1604_image }
- flavor: { get_param: k8s_vm_flavor }
- key_name: { get_param: key_name }
- networks:
- - port: { get_resource: k8s_07_private_port }
- user_data_format: SOFTWARE_CONFIG
- user_data: { get_resource: k8s_07_vm_config }
-
- k8s_08_private_port:
- type: OS::Neutron::Port
- properties:
- network: { get_resource: oam_network }
- fixed_ips: [{"subnet": { get_resource: oam_subnet }}]
- security_groups:
- - { get_resource: onap_sg }
-
- k8s_08_floating_ip:
- type: OS::Neutron::FloatingIP
- properties:
- floating_network_id: { get_param: public_net_id }
- port_id: { get_resource: k8s_08_private_port }
-
- k8s_08_vm_scripts:
- type: OS::Heat::CloudConfig
- properties:
- cloud_config:
- power_state:
- mode: reboot
- runcmd:
- - [ /opt/k8s_vm_install.sh ]
- write_files:
- - path: /opt/k8s_vm_install.sh
- permissions: '0755'
- content:
- str_replace:
- params:
- __docker_proxy__: { get_param: docker_proxy }
- __apt_proxy__: { get_param: apt_proxy }
- __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_private_ip_addr__: { get_attr: [k8s_08_floating_ip, fixed_ip_address] }
- __mtu__: { get_param: mtu }
- template:
- get_file: k8s_vm_install.sh
- - path: /opt/k8s_vm_init.sh
- permissions: '0755'
- content:
- str_replace:
- params:
- __host_private_ip_addr__: { get_attr: [k8s_08_floating_ip, fixed_ip_address] }
- __host_label__: 'compute'
- template:
- get_file: k8s_vm_init.sh
- - path: /etc/init.d/k8s_vm_init_serv
- permissions: '0755'
- content:
- get_file: k8s_vm_init_serv.sh
-
- k8s_08_vm_config:
- type: OS::Heat::MultipartMime
- properties:
- parts:
- - config: { get_resource: k8s_08_vm_scripts }
-
- k8s_08_vm:
- type: OS::Nova::Server
- properties:
- name:
- list_join: ['-', [ { get_param: 'OS::stack_name' }, 'k8s', '08' ] ]
- image: { get_param: ubuntu_1604_image }
- flavor: { get_param: k8s_vm_flavor }
- key_name: { get_param: key_name }
- networks:
- - port: { get_resource: k8s_08_private_port }
- user_data_format: SOFTWARE_CONFIG
- user_data: { get_resource: k8s_08_vm_config }
-
- k8s_09_private_port:
- type: OS::Neutron::Port
- properties:
- network: { get_resource: oam_network }
- fixed_ips: [{"subnet": { get_resource: oam_subnet }}]
- security_groups:
- - { get_resource: onap_sg }
-
- k8s_09_floating_ip:
- type: OS::Neutron::FloatingIP
- properties:
- floating_network_id: { get_param: public_net_id }
- port_id: { get_resource: k8s_09_private_port }
-
- k8s_09_vm_scripts:
- type: OS::Heat::CloudConfig
- properties:
- cloud_config:
- power_state:
- mode: reboot
- runcmd:
- - [ /opt/k8s_vm_install.sh ]
- write_files:
- - path: /opt/k8s_vm_install.sh
- permissions: '0755'
- content:
- str_replace:
- params:
- __docker_proxy__: { get_param: docker_proxy }
- __apt_proxy__: { get_param: apt_proxy }
- __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_private_ip_addr__: { get_attr: [k8s_09_floating_ip, fixed_ip_address] }
- __mtu__: { get_param: mtu }
- template:
- get_file: k8s_vm_install.sh
- - path: /opt/k8s_vm_init.sh
- permissions: '0755'
- content:
- str_replace:
- params:
- __host_private_ip_addr__: { get_attr: [k8s_09_floating_ip, fixed_ip_address] }
- __host_label__: 'compute'
- template:
- get_file: k8s_vm_init.sh
- - path: /etc/init.d/k8s_vm_init_serv
- permissions: '0755'
- content:
- get_file: k8s_vm_init_serv.sh
-
- k8s_09_vm_config:
- type: OS::Heat::MultipartMime
- properties:
- parts:
- - config: { get_resource: k8s_09_vm_scripts }
-
- k8s_09_vm:
- type: OS::Nova::Server
- properties:
- name:
- list_join: ['-', [ { get_param: 'OS::stack_name' }, 'k8s', '09' ] ]
- image: { get_param: ubuntu_1604_image }
- flavor: { get_param: k8s_vm_flavor }
- key_name: { get_param: key_name }
- networks:
- - port: { get_resource: k8s_09_private_port }
- user_data_format: SOFTWARE_CONFIG
- user_data: { get_resource: k8s_09_vm_config }
-
- k8s_10_private_port:
- type: OS::Neutron::Port
- properties:
- network: { get_resource: oam_network }
- fixed_ips: [{"subnet": { get_resource: oam_subnet }}]
- security_groups:
- - { get_resource: onap_sg }
-
- k8s_10_floating_ip:
- type: OS::Neutron::FloatingIP
- properties:
- floating_network_id: { get_param: public_net_id }
- port_id: { get_resource: k8s_10_private_port }
-
- k8s_10_vm_scripts:
- type: OS::Heat::CloudConfig
- properties:
- cloud_config:
- power_state:
- mode: reboot
- runcmd:
- - [ /opt/k8s_vm_install.sh ]
- write_files:
- - path: /opt/k8s_vm_install.sh
- permissions: '0755'
- content:
- str_replace:
- params:
- __docker_proxy__: { get_param: docker_proxy }
- __apt_proxy__: { get_param: apt_proxy }
- __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_private_ip_addr__: { get_attr: [k8s_10_floating_ip, fixed_ip_address] }
- __mtu__: { get_param: mtu }
- template:
- get_file: k8s_vm_install.sh
- - path: /opt/k8s_vm_init.sh
- permissions: '0755'
- content:
- str_replace:
- params:
- __host_private_ip_addr__: { get_attr: [k8s_10_floating_ip, fixed_ip_address] }
- __host_label__: 'compute'
- template:
- get_file: k8s_vm_init.sh
- - path: /etc/init.d/k8s_vm_init_serv
- permissions: '0755'
- content:
- get_file: k8s_vm_init_serv.sh
-
- k8s_10_vm_config:
- type: OS::Heat::MultipartMime
- properties:
- parts:
- - config: { get_resource: k8s_10_vm_scripts }
-
- k8s_10_vm:
- type: OS::Nova::Server
- properties:
- name:
- list_join: ['-', [ { get_param: 'OS::stack_name' }, 'k8s', '10' ] ]
- image: { get_param: ubuntu_1604_image }
- flavor: { get_param: k8s_vm_flavor }
- key_name: { get_param: key_name }
- networks:
- - port: { get_resource: k8s_10_private_port }
- user_data_format: SOFTWARE_CONFIG
- user_data: { get_resource: k8s_10_vm_config }
-
- k8s_11_private_port:
- type: OS::Neutron::Port
- properties:
- network: { get_resource: oam_network }
- fixed_ips: [{"subnet": { get_resource: oam_subnet }}]
- security_groups:
- - { get_resource: onap_sg }
-
- k8s_11_floating_ip:
- type: OS::Neutron::FloatingIP
- properties:
- floating_network_id: { get_param: public_net_id }
- port_id: { get_resource: k8s_11_private_port }
-
- k8s_11_vm_scripts:
- type: OS::Heat::CloudConfig
- properties:
- cloud_config:
- power_state:
- mode: reboot
- runcmd:
- - [ /opt/k8s_vm_install.sh ]
- write_files:
- - path: /opt/k8s_vm_install.sh
- permissions: '0755'
- content:
- str_replace:
- params:
- __docker_proxy__: { get_param: docker_proxy }
- __apt_proxy__: { get_param: apt_proxy }
- __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_private_ip_addr__: { get_attr: [k8s_11_floating_ip, fixed_ip_address] }
- __mtu__: { get_param: mtu }
- template:
- get_file: k8s_vm_install.sh
- - path: /opt/k8s_vm_init.sh
- permissions: '0755'
- content:
- str_replace:
- params:
- __host_private_ip_addr__: { get_attr: [k8s_11_floating_ip, fixed_ip_address] }
- __host_label__: 'compute'
- template:
- get_file: k8s_vm_init.sh
- - path: /etc/init.d/k8s_vm_init_serv
- permissions: '0755'
- content:
- get_file: k8s_vm_init_serv.sh
-
- k8s_11_vm_config:
- type: OS::Heat::MultipartMime
- properties:
- parts:
- - config: { get_resource: k8s_11_vm_scripts }
-
- k8s_11_vm:
- type: OS::Nova::Server
- properties:
- name:
- list_join: ['-', [ { get_param: 'OS::stack_name' }, 'k8s', '11' ] ]
- image: { get_param: ubuntu_1604_image }
- flavor: { get_param: k8s_vm_flavor }
- key_name: { get_param: key_name }
- networks:
- - port: { get_resource: k8s_11_private_port }
- user_data_format: SOFTWARE_CONFIG
- user_data: { get_resource: k8s_11_vm_config }
-
- k8s_12_private_port:
- type: OS::Neutron::Port
- properties:
- network: { get_resource: oam_network }
- fixed_ips: [{"subnet": { get_resource: oam_subnet }}]
- security_groups:
- - { get_resource: onap_sg }
-
- k8s_12_floating_ip:
- type: OS::Neutron::FloatingIP
- properties:
- floating_network_id: { get_param: public_net_id }
- port_id: { get_resource: k8s_12_private_port }
-
- k8s_12_vm_scripts:
- type: OS::Heat::CloudConfig
- properties:
- cloud_config:
- power_state:
- mode: reboot
- runcmd:
- - [ /opt/k8s_vm_install.sh ]
- write_files:
- - path: /opt/k8s_vm_install.sh
- permissions: '0755'
- content:
- str_replace:
- params:
- __docker_proxy__: { get_param: docker_proxy }
- __apt_proxy__: { get_param: apt_proxy }
- __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_private_ip_addr__: { get_attr: [k8s_12_floating_ip, fixed_ip_address] }
- __mtu__: { get_param: mtu }
- template:
- get_file: k8s_vm_install.sh
- - path: /opt/k8s_vm_init.sh
- permissions: '0755'
- content:
- str_replace:
- params:
- __host_private_ip_addr__: { get_attr: [k8s_12_floating_ip, fixed_ip_address] }
- __host_label__: 'compute'
- template:
- get_file: k8s_vm_init.sh
- - path: /etc/init.d/k8s_vm_init_serv
- permissions: '0755'
- content:
- get_file: k8s_vm_init_serv.sh
-
- k8s_12_vm_config:
- type: OS::Heat::MultipartMime
- properties:
- parts:
- - config: { get_resource: k8s_12_vm_scripts }
-
- k8s_12_vm:
- type: OS::Nova::Server
- properties:
- name:
- list_join: ['-', [ { get_param: 'OS::stack_name' }, 'k8s', '12' ] ]
- image: { get_param: ubuntu_1604_image }
- flavor: { get_param: k8s_vm_flavor }
- key_name: { get_param: key_name }
- networks:
- - port: { get_resource: k8s_12_private_port }
- user_data_format: SOFTWARE_CONFIG
- user_data: { get_resource: k8s_12_vm_config }
-
etcd_1_private_port:
type: OS::Neutron::Port
properties:
@@ -1481,27 +1049,3 @@ outputs:
description: The IP address of the k8s_06 instance
value: { get_attr: [k8s_06_floating_ip, floating_ip_address] }
- k8s_07_vm_ip:
- description: The IP address of the k8s_07 instance
- value: { get_attr: [k8s_07_floating_ip, floating_ip_address] }
-
- k8s_08_vm_ip:
- description: The IP address of the k8s_08 instance
- value: { get_attr: [k8s_08_floating_ip, floating_ip_address] }
-
- k8s_09_vm_ip:
- description: The IP address of the k8s_09 instance
- value: { get_attr: [k8s_09_floating_ip, floating_ip_address] }
-
- k8s_10_vm_ip:
- description: The IP address of the k8s_10 instance
- value: { get_attr: [k8s_10_floating_ip, floating_ip_address] }
-
- k8s_11_vm_ip:
- description: The IP address of the k8s_11 instance
- value: { get_attr: [k8s_11_floating_ip, floating_ip_address] }
-
- k8s_12_vm_ip:
- description: The IP address of the k8s_12 instance
- value: { get_attr: [k8s_12_floating_ip, floating_ip_address] }
-