diff options
author | Guo Ruijing <ruijing.guo@intel.com> | 2017-03-13 03:06:56 +0800 |
---|---|---|
committer | Guo Ruijing <ruijing.guo@intel.com> | 2017-03-13 03:13:38 +0800 |
commit | 14592c93aa4dd318edd686394bd13a8880c2219b (patch) | |
tree | c92a3ff881bc679efd339e32c5a4d003c33a66b9 /src/fuel-plugin/vagrant | |
parent | 2a5f2db83cc403e36820464225478bf70a946c3d (diff) |
Deploy K8s with flannel/weave by fuel plugin
1. add license information
2. add fuel plugin to deploy k8s with flannel/weave:
[root@fuel ~]# fuel plugins
id | name | version | package_version | releases
---+-----------------+---------+-----------------+---------------------
9 | fuel-plugin-k8s | 1.0.0 | 4.0.0 | ubuntu (newton-10.0)
[root@fuel ~]# fuel nodes
id | status | name | cluster | ip | mac | roles | pending_roles | online | group_id
---+--------+------------------+---------+-----------+-------------------+------------+---------------+--------+---------
15 | ready | Untitled (36:ba) | 5 | 10.20.0.7 | 52:54:00:37:36:ba | compute | | 1 | 5
20 | ready | Untitled (a5:c0) | 5 | 10.20.0.5 | 52:54:00:15:a5:c0 | k8s-master | | 1 | 5
21 | ready | Untitled (f6:58) | 5 | 10.20.0.8 | 42:bc:7f:4a:ed:1e | k8s-slave | | 1 | 5
14 | ready | Untitled (7e:60) | 5 | 10.20.0.6 | 32:20:08:b9:e4:9a | controller | | 1 | 5
[root@fuel ~]# ssh 10.20.0.5
Warning: Permanently added '10.20.0.5' (ECDSA) to the list of known hosts.
Welcome to Ubuntu 16.04.2 LTS (GNU/Linux 4.4.0-66-generic x86_64)
* Documentation: https://help.ubuntu.com
* Management: https://landscape.canonical.com
* Support: https://ubuntu.com/advantage
Last login: Sun Mar 12 19:30:52 2017 from 10.20.0.2
root@node-20:~# kubectl get nodes
NAME STATUS AGE
node-20.domain.tld Ready,master 50m
node-21.domain.tld Ready 14m
root@node-20:~# kubectl get pods
NAME READY STATUS RESTARTS AGE
busybox 1/1 Running 0 11m
Change-Id: I4969c08fb35d0e7354a1cacdf89d739fff2e5eba
Signed-off-by: Guo Ruijing <ruijing.guo@intel.com>
Diffstat (limited to 'src/fuel-plugin/vagrant')
-rw-r--r-- | src/fuel-plugin/vagrant/Vagrantfile | 21 | ||||
-rwxr-xr-x | src/fuel-plugin/vagrant/build_fuel_plugin.sh | 8 |
2 files changed, 29 insertions, 0 deletions
diff --git a/src/fuel-plugin/vagrant/Vagrantfile b/src/fuel-plugin/vagrant/Vagrantfile new file mode 100644 index 0000000..8f5e620 --- /dev/null +++ b/src/fuel-plugin/vagrant/Vagrantfile @@ -0,0 +1,21 @@ +# -*- mode: ruby -*- +# vi: set ft=ruby : + +# Vagrantfile API/syntax version. Don't touch unless you know what you're doing! +VAGRANTFILE_API_VERSION = "2" + +Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| + + config.vm.box = "ubuntu/trusty64" + + config.vm.define "fuel" do | h | + h.vm.host_name = "fuel" + h.vm.provision :shell, :inline => "/vagrant/build_fuel_plugin.sh", privileged: false + h.vm.synced_folder "..", "/fuel-plugin" + h.vm.provider :virtualbox do |v| + v.customize ["modifyvm", :id, "--memory", 4096] + v.customize ["modifyvm", :id, "--cpus", 4] + v.customize "post-boot",["controlvm", :id, "setlinkstate1", "on"] + end + end +end diff --git a/src/fuel-plugin/vagrant/build_fuel_plugin.sh b/src/fuel-plugin/vagrant/build_fuel_plugin.sh new file mode 100755 index 0000000..4cd579f --- /dev/null +++ b/src/fuel-plugin/vagrant/build_fuel_plugin.sh @@ -0,0 +1,8 @@ +#!/bin/bash +sudo apt-get update -y +sudo apt-get install -y ruby-dev rubygems-integration python-pip rpm createrepo dpkg-dev +sudo gem install fpm +sudo pip install fuel-plugin-builder +cp -r /fuel-plugin /home/vagrant +cd /home/vagrant/fuel-plugin; fpb --debug --build . +cp /home/vagrant/fuel-plugin/*.rpm /vagrant |