From ea8bc1a719a36c89e7eae42080b1835e5ef0c28d Mon Sep 17 00:00:00 2001 From: Pawel Wieczorek Date: Thu, 27 Jun 2019 16:46:28 +0200 Subject: 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 --- test/security/k8s/vagrant/Vagrantfile | 41 +++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 test/security/k8s/vagrant/Vagrantfile (limited to 'test/security/k8s/vagrant/Vagrantfile') 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 -- cgit 1.2.3-korg