Gary Wu | 14a6b30 | 2018-05-01 15:59:28 -0700 | [diff] [blame] | 1 | #!/bin/bash |
Gary Wu | a3fb86f | 2018-06-04 16:23:54 -0700 | [diff] [blame] | 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 | # |
Gary Wu | 14a6b30 | 2018-05-01 15:59:28 -0700 | [diff] [blame] | 11 | |
Gary Wu | 7d03458 | 2018-05-12 09:08:20 -0700 | [diff] [blame] | 12 | if [ "$#" -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 |
| 16 | fi |
| 17 | NUM_K8S_VMS=$1 |
| 18 | |
Gary Wu | 14a6b30 | 2018-05-01 15:59:28 -0700 | [diff] [blame] | 19 | |
| 20 | if [ -z "$WORKSPACE" ]; then |
| 21 | export WORKSPACE=`git rev-parse --show-toplevel` |
| 22 | fi |
| 23 | PARTS_DIR=$WORKSPACE/deployment/heat/onap-oom/parts |
| 24 | |
Gary Wu | 11c9874 | 2018-05-02 16:19:04 -0700 | [diff] [blame] | 25 | cat <<EOF |
| 26 | # |
| 27 | # Generated by scripts/gen-onap-oom-yaml.sh; MANUAL CHANGES WILL BE LOST |
| 28 | # |
| 29 | EOF |
| 30 | |
Gary Wu | 14a6b30 | 2018-05-01 15:59:28 -0700 | [diff] [blame] | 31 | cat $PARTS_DIR/onap-oom-1.yaml |
| 32 | |
| 33 | cat <<EOF |
| 34 | rancher_vm: |
| 35 | type: OS::Nova::Server |
| 36 | properties: |
| 37 | name: rancher |
| 38 | image: { get_param: ubuntu_1604_image } |
| 39 | flavor: { get_param: rancher_vm_flavor } |
gwu | 10db462 | 2018-07-17 22:11:39 -0700 | [diff] [blame^] | 40 | key_name: { get_param: key_name } |
Gary Wu | 14a6b30 | 2018-05-01 15:59:28 -0700 | [diff] [blame] | 41 | networks: |
| 42 | - port: { get_resource: rancher_private_port } |
| 43 | user_data_format: RAW |
| 44 | user_data: |
| 45 | str_replace: |
| 46 | template: |
| 47 | get_file: rancher_vm_entrypoint.sh |
| 48 | params: |
Gary Wu | 14a6b30 | 2018-05-01 15:59:28 -0700 | [diff] [blame] | 49 | __docker_proxy__: { get_param: docker_proxy } |
| 50 | __apt_proxy__: { get_param: apt_proxy } |
| 51 | __rancher_ip_addr__: { get_attr: [rancher_floating_ip, floating_ip_address] } |
Gary Wu | 11c9874 | 2018-05-02 16:19:04 -0700 | [diff] [blame] | 52 | __integration_override_yaml__: { get_param: integration_override_yaml } |
Gary Wu | c474970 | 2018-06-26 14:27:41 -0700 | [diff] [blame] | 53 | __gerrit_branch__: { get_param: gerrit_branch } |
| 54 | __gerrit_refspec__: { get_param: gerrit_refspec } |
| 55 | __docker_manifest__: { get_param: docker_manifest } |
Gary Wu | 11c9874 | 2018-05-02 16:19:04 -0700 | [diff] [blame] | 56 | __oam_network_id__: { get_resource: oam_network } |
| 57 | __oam_subnet_id__: { get_resource: oam_subnet } |
Gary Wu | 276d5a4 | 2018-06-05 11:26:44 -0700 | [diff] [blame] | 58 | __k8s_1_vm_ip__: { get_attr: [k8s_1_floating_ip, floating_ip_address] } |
Gary Wu | 14a6b30 | 2018-05-01 15:59:28 -0700 | [diff] [blame] | 59 | __k8s_vm_ips__: [ |
| 60 | EOF |
| 61 | |
| 62 | for VM_NUM in $(seq $NUM_K8S_VMS); do |
| 63 | K8S_VM_NAME=k8s_$VM_NUM |
| 64 | cat <<EOF |
| 65 | get_attr: [${K8S_VM_NAME}_floating_ip, floating_ip_address], |
| 66 | EOF |
| 67 | done |
| 68 | |
| 69 | cat <<EOF |
| 70 | ] |
| 71 | EOF |
| 72 | |
| 73 | for VM_NUM in $(seq $NUM_K8S_VMS); do |
| 74 | K8S_VM_NAME=k8s_$VM_NUM envsubst < $PARTS_DIR/onap-oom-2.yaml |
| 75 | done |
| 76 | |
| 77 | cat $PARTS_DIR/onap-oom-3.yaml |
Gary Wu | 36e42dd | 2018-05-03 07:29:53 -0700 | [diff] [blame] | 78 | |
| 79 | for VM_NUM in $(seq $NUM_K8S_VMS); do |
| 80 | K8S_VM_NAME=k8s_$VM_NUM |
| 81 | cat <<EOF |
| 82 | ${K8S_VM_NAME}_vm_ip: |
| 83 | description: The IP address of the ${K8S_VM_NAME} instance |
| 84 | value: { get_attr: [${K8S_VM_NAME}_floating_ip, floating_ip_address] } |
| 85 | |
| 86 | EOF |
| 87 | done |