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
10631592
Commit
10631592
authored
Jun 16, 2015
by
Saad Ali
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #9887 from brendandburns/gcr2
switch some more images to gcr for reliability
parents
30180dbc
c3f4b3ff
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
10 additions
and
10 deletions
+10
-10
Makefile
contrib/for-tests/mount-tester/Makefile
+3
-3
empty_dir.go
test/e2e/empty_dir.go
+1
-1
etcd_failure.go
test/e2e/etcd_failure.go
+1
-1
host_path.go
test/e2e/host_path.go
+1
-1
pods.go
test/e2e/pods.go
+2
-2
secrets.go
test/e2e/secrets.go
+1
-1
service_accounts.go
test/e2e/service_accounts.go
+1
-1
No files found.
contrib/for-tests/mount-tester/Makefile
View file @
10631592
all
:
push
TAG
=
0.
1
TAG
=
0.
2
mt
:
mt.go
CGO_ENABLED
=
0
GOOS
=
linux go build
-a
-installsuffix
cgo
-ldflags
'-w'
./mt.go
image
:
mt
sudo
docker build
-t
kubernete
s/mounttest:
$(TAG)
.
sudo
docker build
-t
gcr.io/google_container
s/mounttest:
$(TAG)
.
push
:
image
sudo
docker push kubernete
s/mounttest:
$(TAG)
gcloud preview docker push gcr.io/google_container
s/mounttest:
$(TAG)
clean
:
rm
-f
mt
test/e2e/empty_dir.go
View file @
10631592
...
...
@@ -86,7 +86,7 @@ func testPodWithVolume(path string, source *api.EmptyDirVolumeSource) *api.Pod {
Containers
:
[]
api
.
Container
{
{
Name
:
containerName
,
Image
:
"
kubernetes/mounttest:0.1
"
,
Image
:
"
gcr.io/google_containers/mounttest:0.2
"
,
VolumeMounts
:
[]
api
.
VolumeMount
{
{
Name
:
volumeName
,
...
...
test/e2e/etcd_failure.go
View file @
10631592
...
...
@@ -41,7 +41,7 @@ var _ = Describe("Etcd failure", func() {
Client
:
framework
.
Client
,
Name
:
"baz"
,
Namespace
:
framework
.
Namespace
.
Name
,
Image
:
"nginx"
,
Image
:
"
gcr.io/google_containers/
nginx"
,
Replicas
:
1
,
}))
.
NotTo
(
HaveOccurred
())
})
...
...
test/e2e/host_path.go
View file @
10631592
...
...
@@ -126,7 +126,7 @@ func testPodWithHostVol(path string, source *api.HostPathVolumeSource) *api.Pod
Containers
:
[]
api
.
Container
{
{
Name
:
containerName
,
Image
:
"
kubernetes/mounttest:0.1
"
,
Image
:
"
gcr.io/google_containers/mounttest:0.2
"
,
VolumeMounts
:
[]
api
.
VolumeMount
{
{
Name
:
volumeName
,
...
...
test/e2e/pods.go
View file @
10631592
...
...
@@ -570,7 +570,7 @@ var _ = Describe("Pods", func() {
Containers: []api.Container{
{
Name: "nginx",
Image: "
nginx
",
Image: "
gcr.io/google_containers/nginx:1.7.9
",
},
},
},
...
...
@@ -642,7 +642,7 @@ var _ = Describe("Pods", func() {
Containers: []api.Container{
{
Name: "nginx",
Image: "
nginx
",
Image: "
gcr.io/google_containers/nginx:1.7.9
",
Ports: []api.Port{{ContainerPort: 80}},
},
},
...
...
test/e2e/secrets.go
View file @
10631592
...
...
@@ -75,7 +75,7 @@ var _ = Describe("Secrets", func() {
Containers
:
[]
api
.
Container
{
{
Name
:
"secret-test"
,
Image
:
"
kubernetes/mounttest:0.1
"
,
Image
:
"
gcr.io/google_containers/mounttest:0.2
"
,
Args
:
[]
string
{
"--file_content=/etc/secret-volume/data-1"
,
"--file_mode=/etc/secret-volume/data-1"
},
...
...
test/e2e/service_accounts.go
View file @
10631592
...
...
@@ -65,7 +65,7 @@ var _ = Describe("ServiceAccounts", func() {
Containers
:
[]
api
.
Container
{
{
Name
:
"service-account-test"
,
Image
:
"
kubernetes/mounttest:0.1
"
,
Image
:
"
gcr.io/google_containers/mounttest:0.2
"
,
Args
:
[]
string
{
fmt
.
Sprintf
(
"--file_content=%s/%s"
,
serviceaccount
.
DefaultAPITokenMountPath
,
api
.
ServiceAccountTokenKey
),
},
...
...
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