Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
K
k3s
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jacklull
k3s
Commits
e6f9ddc2
Commit
e6f9ddc2
authored
Nov 16, 2015
by
Jeff Lowdermilk
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #17268 from ixdy/jenkins-test-image-apparmor
Install libapparmor1 in kubekins-test image
parents
3a07af0b
896d04d5
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
3 deletions
+4
-3
gotest-dockerized.sh
hack/jenkins/gotest-dockerized.sh
+1
-1
Dockerfile
hack/jenkins/test-image/Dockerfile
+2
-1
Makefile
hack/jenkins/test-image/Makefile
+1
-1
No files found.
hack/jenkins/gotest-dockerized.sh
View file @
e6f9ddc2
...
@@ -42,5 +42,5 @@ docker run --rm=true \
...
@@ -42,5 +42,5 @@ docker run --rm=true \
-v
"
${
REPO_DIR
}
"
:/go/src/k8s.io/kubernetes
\
-v
"
${
REPO_DIR
}
"
:/go/src/k8s.io/kubernetes
\
-v
"
${
KUBE_JUNIT_REPORT_DIR
}
"
:/workspace/artifacts
\
-v
"
${
KUBE_JUNIT_REPORT_DIR
}
"
:/workspace/artifacts
\
--env
REPO_DIR
=
"
${
REPO_DIR
}
"
\
--env
REPO_DIR
=
"
${
REPO_DIR
}
"
\
-i
gcr.io/google_containers/kubekins-test:0.
2
\
-i
gcr.io/google_containers/kubekins-test:0.
3
\
bash
-c
"cd kubernetes && ./hack/jenkins/test-dockerized.sh"
bash
-c
"cd kubernetes && ./hack/jenkins/test-dockerized.sh"
hack/jenkins/test-image/Dockerfile
View file @
e6f9ddc2
...
@@ -24,7 +24,8 @@ ENV TERM xterm
...
@@ -24,7 +24,8 @@ ENV TERM xterm
WORKDIR
/workspace
WORKDIR
/workspace
RUN
apt-get
-o
Acquire::Check-Valid-Until
=
false
update
&&
apt-get
install
-y
rsync
RUN
apt-get
-o
Acquire::Check-Valid-Until
=
false
update
&&
apt-get
install
-y
rsync
RUN
apt-get
install
-y
file
# libapparmor1 is needed for docker-in-docker.
RUN
apt-get
install
-y
file libapparmor1
RUN
mkdir
-p
/go/src/k8s.io/kubernetes
RUN
mkdir
-p
/go/src/k8s.io/kubernetes
RUN
ln
-s
/go/src/k8s.io/kubernetes /workspace/kubernetes
RUN
ln
-s
/go/src/k8s.io/kubernetes /workspace/kubernetes
...
...
hack/jenkins/test-image/Makefile
View file @
e6f9ddc2
all
:
push
all
:
push
TAG
=
0.
2
TAG
=
0.
3
container
:
container
:
docker build
-t
gcr.io/google_containers/kubekins-test .
docker build
-t
gcr.io/google_containers/kubekins-test .
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment