stackube/devstack
Pengfei Ni ea45b75fbc Fix deployment on centos
Change-Id: I1f6de4fd05cdf5169e8f8796e78d820c5c16c5ce
Signed-off-by: Pengfei Ni <feiskyer@gmail.com>
2017-08-02 19:31:22 +08:00
..
kubeadm.yaml Add devstack plugin for stackube 2017-05-31 13:48:26 +08:00
local.conf.node.sample Add multiple container runtime support. 2017-08-01 12:02:02 +08:00
local.conf.sample Add multiple container runtime support. 2017-08-01 12:02:02 +08:00
plugin.sh Fix deployment on centos 2017-08-02 19:31:22 +08:00
README.md Update network TPR to CRD 2017-07-06 09:45:23 +08:00
settings Add devstack plugin for stackube 2017-05-31 13:48:26 +08:00

devstack plugin

devstack plugin for stackube.

All-in-one

# create stack user
sudo useradd -s /bin/bash -d /opt/stack -m stack
echo "stack ALL=(ALL) NOPASSWD: ALL" | sudo tee /etc/sudoers.d/stack
sudo su - stack

git clone https://git.openstack.org/openstack-dev/devstack -b stable/ocata
cd devstack

Create local.conf from local.conf.sample and then run ./stack.sh to install.

./stack.sh

Wait a while for installation compelete, then setup kubernetes and OpenStack client:

# Kubernetes
export KUBECONFIG=/etc/kubernetes/admin.conf
kubectl cluster-info

# OpenStack
source openrc admin admin
openstack service list

Add a node

# create stack user
sudo useradd -s /bin/bash -d /opt/stack -m stack
echo "stack ALL=(ALL) NOPASSWD: ALL" | sudo tee /etc/sudoers.d/stack
sudo su - stack

git clone https://git.openstack.org/openstack-dev/devstack -b stable/ocata
cd devstack

Create local.conf from local.conf.node.sample, set HOST_IP to local host's IP, set SERVICE_HOST to master's IP and set KUBEADM_TOKEN to kubeadm token (could be got by kubeadm token list).

Then run ./stack.sh to install.