mirror of
				https://github.com/optim-enterprises-bv/kubernetes.git
				synced 2025-11-03 19:58:17 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			50 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			50 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/bash
 | 
						|
 | 
						|
# Copyright 2015 The Kubernetes Authors All rights reserved.
 | 
						|
#
 | 
						|
# 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 -o errexit
 | 
						|
set -o nounset
 | 
						|
set -o pipefail
 | 
						|
set -o xtrace
 | 
						|
 | 
						|
export REPO_DIR=${REPO_DIR:-$(pwd)}
 | 
						|
export HOST_ARTIFACTS_DIR=${WORKSPACE}/_artifacts
 | 
						|
mkdir -p "${HOST_ARTIFACTS_DIR}"
 | 
						|
 | 
						|
# Run the kubekins container, mapping in docker (so we can launch containers),
 | 
						|
# the repo directory, and the artifacts output directory.
 | 
						|
#
 | 
						|
# Note: We pass in the absolute path to the repo on the host as an env var incase
 | 
						|
# any tests that get run need to launch containers that also map volumes.
 | 
						|
# This is required because if you do
 | 
						|
#
 | 
						|
# $ docker run -v $PATH:/container/path ...
 | 
						|
#
 | 
						|
# From _inside_ a container that has the host's docker mapped in, the $PATH
 | 
						|
# provided must be resolvable on the *HOST*, not the container.
 | 
						|
 | 
						|
docker run --rm=true \
 | 
						|
  -v /var/run/docker.sock:/var/run/docker.sock \
 | 
						|
  -v "$(which docker)":/bin/docker \
 | 
						|
  -v "${REPO_DIR}":/go/src/k8s.io/kubernetes \
 | 
						|
  -v "${WORKSPACE}/_artifacts":/workspace/artifacts \
 | 
						|
  -v /etc/localtime:/etc/localtime:ro \
 | 
						|
  -e "KUBE_FORCE_VERIFY_CHECKS=${KUBE_FORCE_VERIFY_CHECKS:-}" \
 | 
						|
  -e "KUBE_VERIFY_GIT_BRANCH=${KUBE_VERIFY_GIT_BRANCH:-}" \
 | 
						|
  -e "REPO_DIR=${REPO_DIR}" \
 | 
						|
  -e "HOST_ARTIFACTS_DIR=${HOST_ARTIFACTS_DIR}" \
 | 
						|
  -i gcr.io/google_containers/kubekins-test:0.11 \
 | 
						|
  bash -c "cd kubernetes && ./hack/jenkins/test-dockerized.sh"
 |