aboutsummaryrefslogtreecommitdiffstats
path: root/test/security/k8s/vagrant/Vagrantfile
diff options
context:
space:
mode:
authorPawel Wieczorek <p.wieczorek2@samsung.com>2019-06-27 16:46:28 +0200
committerPawel Wieczorek <p.wieczorek2@samsung.com>2019-07-08 12:29:52 +0200
commitea8bc1a719a36c89e7eae42080b1835e5ef0c28d (patch)
tree1b77dadbdc8463e76a9411195e2ef4d1ef78f4ef /test/security/k8s/vagrant/Vagrantfile
parent65028666004a61afa0b7ea054da4744f3a2e298d (diff)
k8s: Add virtual environment for testing
This patch adds simplified ONAP deployment environment (Kubernetes cluster managed by Rancher). Its purpose is to provide cluster defaults for inspection without the need to access actual ONAP application deployment. Default node customization scripts were extracted ("tools/get_customization_scripts.sh" run within "tools/imported/" directory) from official documentation [1] and imported here in order not to introduce runtime online dependencies. This environment should probably be migrated in future to more appropriate place like devtool [2] (or at least use the same Vagrant boxes). [1] https://docs.onap.org/en/casablanca/submodules/oom.git/docs/oom_setup_kubernetes_rancher.html [2] https://git.onap.org/integration/devtool Issue-ID: SECCOM-235 Change-Id: I57f9f3caac0e8b391e9ed480f6bebba98e006882 Signed-off-by: Pawel Wieczorek <p.wieczorek2@samsung.com>
Diffstat (limited to 'test/security/k8s/vagrant/Vagrantfile')
-rw-r--r--test/security/k8s/vagrant/Vagrantfile41
1 files changed, 41 insertions, 0 deletions
diff --git a/test/security/k8s/vagrant/Vagrantfile b/test/security/k8s/vagrant/Vagrantfile
new file mode 100644
index 000000000..83499b7c1
--- /dev/null
+++ b/test/security/k8s/vagrant/Vagrantfile
@@ -0,0 +1,41 @@
+# -*- mode: ruby -*-
+# -*- coding: utf-8 -*-
+
+vm_memory = 2 * 1024
+vm_cpus = 1
+
+cluster = [
+ { name: 'master', hostname: 'master', ip: '172.17.0.100' },
+ { name: 'worker', hostname: 'worker', ip: '172.17.0.101' }
+]
+
+Vagrant.configure('2') do |config|
+ cluster.each do |node|
+ config.vm.define node[:name] do |config|
+ config.vm.box = "generic/ubuntu1604"
+ config.vm.hostname = node[:hostname]
+
+ config.vm.provider :virtualbox do |v|
+ v.name = node[:name]
+ v.memory = vm_memory
+ v.cpus = vm_cpus
+ end
+
+ config.vm.provider :libvirt do |v|
+ v.memory = vm_memory
+ v.cpus = vm_cpus
+ end
+
+ config.vm.network :private_network, ip: node[:ip]
+
+ if node[:name] == 'master'
+ config.vm.network "forwarded_port", guest: 8080, host: 8080
+ config.vm.provision :shell, path: "../tools/imported/openstack-rancher.sh"
+ end
+
+ if node[:name] == 'worker'
+ config.vm.provision :shell, path: "../tools/imported/openstack-k8s-node.sh"
+ end
+ end
+ end
+end