stackube/devstack/settings
Pengfei Ni 291127f0d1 Add devstack plugin for stackube
The plugin install components including

* OpenStack Keystone, Neutron and Cinder with Ceph backend
* Kubernetes with frakti container runtime
* Kubernetes auth via keystone

Implements: blueprint kubernetes-deploy
Change-Id: Ib2ad60b71bc51bdedaefd7014c83ed7ba56414e3
Signed-off-by: Pengfei Ni <feiskyer@gmail.com>
2017-05-31 13:48:26 +08:00

16 lines
622 B
Plaintext

STACKUBE_HOME=${STACKUBE_HOME:-$DEST/stackube}
# Kubernetes master IP, should set to master IP for minions
KUBERNETES_MASTER_IP=${KUBERNETES_MASTER_IP:-${SERVICE_HOST}}
KUBERNETES_MASTER_PORT=${KUBERNETES_MASTER_PORT:-6443}
# Kubeadm token, only for minions
KUBEADM_TOKEN=${KUBEADM_TOKEN:-""}
# The version of frakti
FRAKTI_VERSION=${FRAKTI_VERSION:-"v0.2"}
# Kubernetes CLUSTER CIDR
CLUSTER_CIDR=${CLUSTER_CIDR:-"10.244.0.0/16"}
# CNI Configurations
# Brige network plugin is used now
# TODO: replace network plugin with stackube-cni
CONTAINER_CIDR=${CONTAINER_CIDR:-"10.244.1.0/24"}
CNI_VERSION=${CNI_VERSION:-"v0.5.2"}