Extend K8S and RIC installation instructions
[it/dep.git] / tools / k8s / heat / env / aux.env
1 ################################################################################
2 #   Copyright (c) 2019 AT&T Intellectual Property.                             #
3 #   Copyright (c) 2019 Nokia.                                                  #
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 #   Unless required by applicable law or agreed to in writing, software        #
12 #   distributed under the License is distributed on an "AS IS" BASIS,          #
13 #   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.   #
14 #   See the License for the specific language governing permissions and        #
15 #   limitations under the License.                                             #
16 ################################################################################
17
18 # HEAT stack deploy env file
19 # customize the following for local OpenStack parameters
20 #    ubuntu_1604_image:       local OpenStack's image name for Ubuntu 1604
21 #    apt_proxy:               host and port of the apt server
22 #    docker_proxy:            host and port of the docker registry
23 #    k8s_vm_flavor:           dimension of the VMs for the k8s cluster nodes
24 #    public_net_id:           the UUID of the IPv4 network where VMs get their IPv4 floating IP addresses 
25 #    public_v6net_id:         the UUID of the IPv6 network where the VMs connect their IPv6 interfaces to
26 #    int_net_cidr:            the address space of the internal network connecting all VMs of the stack
27 #    helm_override_yaml:      the configurations for Helm deployments
28 parameters:
29   ubuntu_1604_image: "${OS_IMAGE_NAME}"
30   apt_proxy: "${OS_APT_PROXY}"
31   docker_proxy: "${OS_DOCKER_PROXY}"
32   public_net_id: "${OS_PUBLIC_NET_ID}"
33   public_v6net_id: "${OS_PUBLIC_V6NET_ID}"
34   key_name: "${OS_KEY_NAME}"
35
36   k8s_vm_flavor: m1.large
37   int_net_cidr: 10.0.0.0/16
38
39   helm_deploy_delay: 4m
40
41   helm_override_yaml: >
42     global:
43       repository: __docker_proxy__
44       pullPolicy: IfNotPresent