-
Notifications
You must be signed in to change notification settings - Fork 20
/
common.env.sample.nested_mode
73 lines (60 loc) · 1.87 KB
/
common.env.sample.nested_mode
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
#
# Sample common.env for Contrail-kubernetes module install in Nested mode.
#
# ---
# Address of docker regisry to pull/push containers
# Default: $_CONTRAIL_REGISTRY_IP:5000
CONTRAIL_REGISTRY="docker.io/opencontrailnightly"
CONTRAIL_CONTAINER_TAG="latest"
# ---
# List of IPs of controller nodes (config+control+web+analytics+all 3rd party services).
# If more granular tuning is required then redefine a particular
# type of node via appropriate _NODES (see below).
# Default: $HOST_IP
CONTROLLER_NODES=10.10.10.1
CONFIG_NODES=10.10.10.1
# ---
# RabbitMQ Port used for inter-node and CLI tool communition.
RABBITMQ_NODE_PORT=5673
# ---
# VIP addresses of Contrail services
# Default: first IP of appropriate list
ANALYTICS_API_VIP=10.10.10.1
CONFIG_API_VIP=10.10.10.1
# ---
# Level of logging
LOG_LEVEL=SYS_DEBUG
# ---
# Authenticator for communication to Config API.
AUTH_MODE='keystone'
KEYSTONE_AUTH_HOST=10.10.10.1
KEYSTONE_AUTH_ADMIN_TENANT='admin'
KEYSTONE_AUTH_ADMIN_USER='admin'
KEYSTONE_AUTH_ADMIN_PASSWORD='c0ntrail123'
KEYSTONE_AUTH_ADMIN_PORT=35357
KEYSTONE_AUTH_URL_VERSION='/v3'
# ---
# Orchestration system.
CLOUD_ORCHESTRATOR='kubernetes'
# ---
# Address of K8S API server
KUBERNETES_API_SERVER="10.84.31.67"
KUBERNETES_API_SECURE_PORT=6443
# ---
# Contrail Virtual Network to which this nested cluster belongs to.
KUBERNETES_CLUSTER_NETWORK="{'domain': 'default-domain', 'project': 'admin', 'name': '__public__'}"
# ---
# Configure the cluster to be in nested mode.
KUBEMANAGER_NESTED_MODE="1"
# ---
# Virtual/Internal IP allocated for K8s miniod nodes.
KUBERNESTES_NESTED_VROUTER_VIP="10.10.10.2"
# ---
# Cluster name
KUBERNETES_CLUSTER_NAME="k8s"
KUBERNETES_POD_SUBNETS="10.32.0.0/12"
KUBERNETES_SERVICE_SUBNETS="10.96.0.0/12"
KUBERNETES_IP_FABRIC_SUBNETS="10.64.0.0/12"
KUBERNETES_IP_FABRIC_FORWARDING="false"
KUBERNETES_IP_FABRIC_SNAT="false"
KUBERNETES_PUBLIC_FIP_POOL="{}"