blob: 32fe147dc55d4df3fd76fec094148aecee43c129 [file] [log] [blame]
Gary Wu950a3232019-03-26 13:08:29 -07001#!/bin/bash
2#
3# Copyright 2018 Huawei Technologies Co., Ltd.
4#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11
12if [ "$#" -ne 1 ]; then
13 echo This script generates the HEAT template for X number of k8s VMs
14 echo "$0 <num k8s vms>"
15 exit 1
16fi
17NUM_K8S_VMS=$1
18
19if [ -z "$WORKSPACE" ]; then
20 export WORKSPACE=`git rev-parse --show-toplevel`
21fi
22PARTS_DIR=$WORKSPACE/deployment/heat/onap-rke/parts
23
24cat <<EOF
25#
26# Generated by scripts/gen-onap-oom-yaml.sh; MANUAL CHANGES WILL BE LOST
27#
28EOF
29
30cat $PARTS_DIR/onap-oom-1.yaml
31
32cat <<EOF
Gary Wud95bf2b2019-06-21 15:35:18 -070033 nfs_vm:
Gary Wu950a3232019-03-26 13:08:29 -070034 type: OS::Nova::Server
35 properties:
36 name:
Gary Wud95bf2b2019-06-21 15:35:18 -070037 list_join: ['-', [{ get_param: 'OS::stack_name' }, 'nfs']]
Gary Wu950a3232019-03-26 13:08:29 -070038 image: { get_param: ubuntu_1804_image }
Gary Wud95bf2b2019-06-21 15:35:18 -070039 flavor: { get_param: nfs_vm_flavor }
Gary Wu950a3232019-03-26 13:08:29 -070040 key_name: { get_param: key_name }
41 networks:
Gary Wud95bf2b2019-06-21 15:35:18 -070042 - port: { get_resource: nfs_private_port }
Gary Wu950a3232019-03-26 13:08:29 -070043 user_data_format: RAW
44 user_data:
45 str_replace:
46 template:
Gary Wud95bf2b2019-06-21 15:35:18 -070047 get_file: nfs_vm_entrypoint.sh
Gary Wu950a3232019-03-26 13:08:29 -070048 params:
49 __docker_proxy__: { get_param: docker_proxy }
50 __apt_proxy__: { get_param: apt_proxy }
Gary Wud95bf2b2019-06-21 15:35:18 -070051 __nfs_ip_addr__: { get_attr: [nfs_floating_ip, floating_ip_address] }
52 __nfs_private_ip_addr__: { get_attr: [nfs_floating_ip, fixed_ip_address] }
Gary Wu950a3232019-03-26 13:08:29 -070053 __integration_override_yaml__: { get_param: integration_override_yaml }
54 __integration_gerrit_branch__: { get_param: integration_gerrit_branch }
55 __integration_gerrit_refspec__: { get_param: integration_gerrit_refspec }
56 __oom_gerrit_branch__: { get_param: oom_gerrit_branch }
57 __oom_gerrit_refspec__: { get_param: oom_gerrit_refspec }
58 __docker_manifest__: { get_param: docker_manifest }
59 __docker_version__: { get_param: docker_version }
Gary Wu950a3232019-03-26 13:08:29 -070060 __kubectl_version__: { get_param: kubectl_version }
61 __helm_version__: { get_param: helm_version }
62 __helm_deploy_delay__: { get_param: helm_deploy_delay }
Gary Wu950a3232019-03-26 13:08:29 -070063 __mtu__: { get_param: mtu }
64 __portal_hostname__: { get_param: portal_hostname }
65 __public_net_id__: { get_param: public_net_id }
66 __oam_network_cidr__: { get_param: oam_network_cidr }
67 __oam_network_id__: { get_resource: oam_network }
68 __oam_subnet_id__: { get_resource: oam_subnet }
69 __sec_group__: { get_resource: onap_sg }
70 __k8s_01_vm_ip__: { get_attr: [k8s_01_floating_ip, floating_ip_address] }
71 __k8s_vm_ips__: [
72EOF
73
74for VM_NUM in $(seq -f %02g $NUM_K8S_VMS); do
75 K8S_VM_NAME=k8s_$VM_NUM
76 cat <<EOF
77 get_attr: [${K8S_VM_NAME}_floating_ip, floating_ip_address],
78EOF
79done
80
81cat <<EOF
82 ]
83 __k8s_private_ips__: [
84EOF
85
86for VM_NUM in $(seq -f %02g $NUM_K8S_VMS); do
87 K8S_VM_NAME=k8s_$VM_NUM
88 cat <<EOF
89 get_attr: [${K8S_VM_NAME}_floating_ip, fixed_ip_address],
90EOF
91done
92
93cat <<EOF
94 ]
95EOF
96
97for VM_NUM in $(seq -f %02g $NUM_K8S_VMS); do
98 VM_TYPE=k8s HOST_LABEL=compute VM_NUM=$VM_NUM envsubst < $PARTS_DIR/onap-oom-2.yaml
99done
100
101for VM_NUM in $(seq 3); do
102 VM_TYPE=orch HOST_LABEL=orchestration VM_NUM=$VM_NUM envsubst < $PARTS_DIR/onap-oom-2.yaml
103done
104
105
106cat $PARTS_DIR/onap-oom-3.yaml
107
108for VM_NUM in $(seq -f %02g $NUM_K8S_VMS); do
109 K8S_VM_NAME=k8s_$VM_NUM
110 cat <<EOF
111 ${K8S_VM_NAME}_vm_ip:
112 description: The IP address of the ${K8S_VM_NAME} instance
113 value: { get_attr: [${K8S_VM_NAME}_floating_ip, floating_ip_address] }
114
115 ${K8S_VM_NAME}_vm_private_ip:
116 description: The private IP address of the ${K8S_VM_NAME} instance
117 value: { get_attr: [${K8S_VM_NAME}_floating_ip, fixed_ip_address] }
118
119EOF
120done
121
122for VM_NUM in $(seq 3); do
123 K8S_VM_NAME=orch_$VM_NUM
124 cat <<EOF
125 ${K8S_VM_NAME}_vm_ip:
126 description: The IP address of the ${K8S_VM_NAME} instance
127 value: { get_attr: [${K8S_VM_NAME}_floating_ip, floating_ip_address] }
128
129 ${K8S_VM_NAME}_vm_private_ip:
130 description: The private IP address of the ${K8S_VM_NAME} instance
131 value: { get_attr: [${K8S_VM_NAME}_floating_ip, fixed_ip_address] }
132
133EOF
134done