diff --git a/test/e2e_node/jenkins/cos-init-disable-live-restore.yaml b/test/e2e_node/jenkins/cos-init-disable-live-restore.yaml deleted file mode 100644 index e57ba68983c..00000000000 --- a/test/e2e_node/jenkins/cos-init-disable-live-restore.yaml +++ /dev/null @@ -1,23 +0,0 @@ -#cloud-config -# -# This cloud-init configuration file disables Docker live-restore. - -runcmd: - - cp /usr/lib/systemd/system/docker.service /etc/systemd/system/docker.service - - sed -i '/^ExecStart=\/usr\/bin\/dockerd/ s/$/ --live-restore=false/' /etc/systemd/system/docker.service - - systemctl daemon-reload - - systemctl restart docker - - mount /tmp /tmp -o remount,exec,suid - - usermod -a -G docker jenkins - - mkdir -p /var/lib/kubelet - - mkdir -p /home/kubernetes/containerized_mounter/rootfs - - mount --bind /home/kubernetes/containerized_mounter/ /home/kubernetes/containerized_mounter/ - - mount -o remount, exec /home/kubernetes/containerized_mounter/ - - wget https://dl.k8s.io/gci-mounter/mounter.tar -O /tmp/mounter.tar - - tar xvf /tmp/mounter.tar -C /home/kubernetes/containerized_mounter/rootfs - - mkdir -p /home/kubernetes/containerized_mounter/rootfs/var/lib/kubelet - - mount --rbind /var/lib/kubelet /home/kubernetes/containerized_mounter/rootfs/var/lib/kubelet - - mount --make-rshared /home/kubernetes/containerized_mounter/rootfs/var/lib/kubelet - - mount --bind /proc /home/kubernetes/containerized_mounter/rootfs/proc - - mount --bind /dev /home/kubernetes/containerized_mounter/rootfs/dev - - rm /tmp/mounter.tar diff --git a/test/e2e_node/jenkins/ubuntu-14.04-nvidia-install.sh b/test/e2e_node/jenkins/ubuntu-14.04-nvidia-install.sh deleted file mode 100644 index f74af9a98fe..00000000000 --- a/test/e2e_node/jenkins/ubuntu-14.04-nvidia-install.sh +++ /dev/null @@ -1,29 +0,0 @@ -#!/usr/bin/env bash - -# Copyright 2017 The Kubernetes Authors. -# -# 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. - -# This script is meant to install Nvidia drivers on Ubuntu 14.04 GCE VMs. -# This script is meant to facilitate testing of Nvidia GPU support in Kubernetes. -echo "Checking for CUDA and installing." -# Check for CUDA and try to install. -if ! dpkg-query -W cuda; then - curl -O http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1404/x86_64/cuda-repo-ubuntu1404_8.0.61-1_amd64.deb - dpkg -i ./cuda-repo-ubuntu1404_8.0.61-1_amd64.deb - apt-get update - apt-get install cuda -y - apt-get install "linux-headers-$(uname -r)" -y -fi -## Pre-loads kernel modules -nvidia-smi