diff options
author | Pawel Wieczorek <p.wieczorek2@samsung.com> | 2020-01-23 12:13:44 +0100 |
---|---|---|
committer | Pawel Wieczorek <p.wieczorek2@samsung.com> | 2020-01-29 17:17:40 +0100 |
commit | 2e956f6332428d91afd683884de7dcf43aec5988 (patch) | |
tree | b66c30376fb7cae6c982ea6324a22b864f553a58 /test/security/k8s/vagrant | |
parent | e15544dfe000aa6d055b5d8bc0fadfc8f0ef5648 (diff) |
k8s: Drop support for Casablanca
Casablanca release reached End of Life (EOL) stage on July 8th 2019 [1].
This patch also fixes comments for test fixtures.
This whole test subtree will be deleted upon migrating Aquasec
kube-bench [2] for CIS Benchmark [3] integrated by Orange [4] to ONAP
xtesting [5].
[1] https://wiki.onap.org/display/DW/Long+Term+Roadmap
[2] https://github.com/aquasecurity/kube-bench
[3] https://www.cisecurity.org/benchmark/kubernetes/
[4] https://gitlab.com/Orange-OpenSource/lfn/onap/integration/xtesting
[5] https://git.onap.org/integration/xtesting/
Issue-ID: SECCOM-235
Change-Id: Ifc7d9c775c27d4cfafdd1932809288530cffceff
Signed-off-by: Pawel Wieczorek <p.wieczorek2@samsung.com>
Diffstat (limited to 'test/security/k8s/vagrant')
-rw-r--r-- | test/security/k8s/vagrant/casablanca/Vagrantfile | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/test/security/k8s/vagrant/casablanca/Vagrantfile b/test/security/k8s/vagrant/casablanca/Vagrantfile deleted file mode 100644 index c7e6883ce..000000000 --- a/test/security/k8s/vagrant/casablanca/Vagrantfile +++ /dev/null @@ -1,48 +0,0 @@ -# -*- mode: ruby -*- -# -*- coding: utf-8 -*- - -host_ip = "192.168.121.1" - -rancher_port = 8080 - -vm_memory = 2 * 1024 -vm_cpus = 1 -vm_box = "generic/ubuntu1604" - -cluster = [ - { name: 'master', hostname: 'master', ip: '172.17.3.100' }, - { name: 'worker', hostname: 'worker', ip: '172.17.3.101' } -] - -Vagrant.configure('2') do |config| - cluster.each do |node| - config.vm.define node[:name] do |config| - config.vm.box = vm_box - 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] - config.vm.provision :shell, inline: "echo nameserver #{host_ip} | resolvconf -a eth0.inet" - - if node[:name] == 'master' - config.vm.network "forwarded_port", guest: rancher_port, host: rancher_port - config.vm.provision :shell, path: "../../tools/casablanca/imported/openstack-rancher.sh" - config.vm.provision :shell, path: "../../tools/casablanca/get_ranchercli.sh" - end - - if node[:name] == 'worker' - config.vm.provision :shell, path: "../../tools/casablanca/imported/openstack-k8s-node.sh" - end - end - end -end |