update test cases 64/69364/1 master
authorXuan Jia <jason.jiaxuan@gmail.com>
Tue, 17 Dec 2019 09:38:29 +0000 (04:38 -0500)
committerXuan Jia <jason.jiaxuan@gmail.com>
Tue, 17 Dec 2019 09:38:34 +0000 (04:38 -0500)
Signed-off-by: Xuan Jia <jason.jiaxuan@gmail.com>
Change-Id: I57f9c522ac13f323021e213f7938aafc0572524e

src/vagrant/kubeadm_app/custom-bono-svc/deployment-svc.yaml [new file with mode: 0644]
src/vagrant/kubeadm_app/setup_vagrant.sh [new file with mode: 0755]
src/vagrant/setup_vagrant.sh

diff --git a/src/vagrant/kubeadm_app/custom-bono-svc/deployment-svc.yaml b/src/vagrant/kubeadm_app/custom-bono-svc/deployment-svc.yaml
new file mode 100644 (file)
index 0000000..cde909b
--- /dev/null
@@ -0,0 +1,82 @@
+apiVersion: extensions/v1beta1
+kind: Deployment
+metadata:
+  name: busybox
+spec:
+  strategy:
+    rollingUpdate:
+      maxSurge: 10%
+      maxUnavailable: 0
+  selector:
+    matchLabels:
+      app: busybox
+  replicas: 3
+  template:
+    metadata:
+      labels:
+        app: busybox
+      annotations:
+        networks: '[
+          { "name": "calico"},
+          { "name": "weave"}
+        ]'
+    spec:
+      containers:
+      - name: busybox
+        image: bcmt-registry:5000/busybox:latest
+        command: ["top"]
+        stdin: true
+        tty: true
+      dnsPolicy: Default
+apiVersion: v1
+kind: ServiceAccount
+metadata:
+  labels:
+    k8s-app: nginx
+  name: nginx
+  namespace: nginx
+
+---
+
+kind: Deployment
+apiVersion: apps/v1beta2
+metadata:
+  labels:
+    k8s-app: nginx
+  name: nginx
+  namespace: nginx
+spec:
+  replicas: 1
+  revisionHistoryLimit: 10
+  selector:
+    matchLabels:
+      k8s-app: nginx
+  template:
+    metadata:
+      labels:
+        k8s-app: nginx
+    spec:
+      containers:
+      - name: nginx
+        image: nginx:2
+        ports:
+        - containerPort: 80
+          protocol: TCP
+        args:
+---
+# ------------------- Dashboard Service ------------------- #
+
+kind: Service
+apiVersion: v1
+metadata:
+  labels:
+    k8s-app: nginx
+  name: nginx
+  namespace: nginx
+spec:
+  type: NodePort
+  ports:
+  - port: 80
+    nodePort: 31001   
+  selector:
+    k8s-app: nginx
diff --git a/src/vagrant/kubeadm_app/setup_vagrant.sh b/src/vagrant/kubeadm_app/setup_vagrant.sh
new file mode 100755 (executable)
index 0000000..23fdcd2
--- /dev/null
@@ -0,0 +1,97 @@
+#!/bin/bash
+#
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+#      http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
+set -ex
+
+DIR="$(dirname `readlink -f $0`)"
+
+usage() {
+  echo "Usage: $0 -b virtualbox|libvirt"
+}
+
+install_packages()
+{
+    cat << EOF | sudo tee /etc/sudoers.d/${USER}
+${USER} ALL = (root) NOPASSWD:ALL
+EOF
+    sudo apt-get update -y
+    sudo apt-get install -y git unzip
+    wget https://releases.hashicorp.com/vagrant/2.0.2/vagrant_2.0.2_x86_64.deb
+    sudo dpkg -i vagrant_2.0.2_x86_64.deb
+    rm -rf vagrant_2.0.2_x86_64.deb
+
+    sudo apt-get install -y virtualbox
+
+    #refer to https://github.com/vagrant-libvirt/vagrant-libvirt
+    sudo sed -i 's/^# deb-src/deb-src/g' /etc/apt/sources.list
+    sudo apt-get update
+    sudo apt-get build-dep vagrant ruby-libvirt -y
+    sudo apt-get install -y bridge-utils qemu libvirt-bin ebtables dnsmasq
+    sudo apt-get install -y libffi-dev libxslt-dev libxml2-dev libvirt-dev zlib1g-dev ruby-dev
+    vagrant plugin install vagrant-libvirt
+    sudo adduser ${USER} libvirtd
+    sudo service libvirtd restart
+}
+
+install_box_builder()
+{
+    # Thanks Bento's great effort
+    # Bento project(https://github.com/chef/bento) is released by Apache 2.0 License
+    cd $DIR
+    rm -rf bento
+    git clone https://github.com/chef/bento
+    cd bento; git checkout 05d98910d835b503e7be3d2e4071956f66fbbbc4
+    cp ../update.sh ubuntu/scripts/
+    wget https://releases.hashicorp.com/packer/1.1.2/packer_1.1.2_linux_amd64.zip
+    unzip packer_1.1.2_linux_amd64.zip
+    cd ubuntu
+    sed -i 's/"disk_size": "40960"/"disk_size": "409600"/' ubuntu-16.04-amd64.json
+}
+
+build_virtualbox() {
+    cd $DIR/bento/ubuntu
+    rm -rf ~/'VirtualBox VMs'/ubuntu-16.04-amd64
+    ../packer build -var 'headless=true' -only=virtualbox-iso ubuntu-16.04-amd64.json
+    vagrant box remove -f opnfv/container4nfv --all || true
+    vagrant box add opnfv/container4nfv ../builds/ubuntu-16.04.virtualbox.box
+}
+
+build_libvirtbox() {
+    cd $DIR/bento/ubuntu
+    ../packer build -var 'headless=true' -only=qemu ubuntu-16.04-amd64.json
+    vagrant box remove -f opnfv/container4nfv.kvm --all || true
+    vagrant box add opnfv/container4nfv.kvm ../builds/ubuntu-16.04.libvirt.box
+}
+
+install_packages
+
+set +x
+while getopts "b:h" OPTION; do
+    case $OPTION in
+    b)
+        if [ ${OPTARG} == "virtualbox" ]; then
+            install_box_builder
+            build_virtualbox
+        elif [ ${OPTARG} == "libvirt" ]; then
+            install_box_builder
+            build_libvirtbox
+        fi
+        ;;
+    h)
+        usage;
+        ;;
+    esac
+done
index fcde052..23fdcd2 100755 (executable)
@@ -1,6 +1,5 @@
 #!/bin/bash
 #
-# Copyright (c) 2017 Intel Corporation
 #
 # Licensed under the Apache License, Version 2.0 (the "License");
 # you may not use this file except in compliance with the License.