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
5b1d875f
Commit
5b1d875f
authored
Dec 01, 2016
by
Daniel Smith
Committed by
GitHub
Dec 01, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert "Modify GCI mounter to enable NFSv3"
parent
1e09f64a
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
12 additions
and
84 deletions
+12
-84
configure.sh
cluster/gce/gci/configure.sh
+2
-2
Changelog
cluster/gce/gci/mounter/Changelog
+0
-4
Dockerfile
cluster/gce/gci/mounter/Dockerfile
+2
-2
Makefile
cluster/gce/gci/mounter/Makefile
+1
-1
mounter
cluster/gce/gci/mounter/mounter
+6
-14
startmounter.sh
cluster/gce/gci/mounter/startmounter.sh
+0
-26
volumes.go
test/e2e/common/volumes.go
+0
-34
gci-init.yaml
test/e2e_node/jenkins/gci-init.yaml
+1
-1
No files found.
cluster/gce/gci/configure.sh
View file @
5b1d875f
...
...
@@ -100,10 +100,10 @@ function split-commas {
function
install-gci-mounter-tools
{
local
-r
rkt_version
=
"v1.18.0"
local
-r
gci_mounter_version
=
"v
3
"
local
-r
gci_mounter_version
=
"v
2
"
local
-r
rkt_binary_sha1
=
"75fc8f29c79bc9e505f3e7f6e8fadf2425c21967"
local
-r
rkt_stage1_fly_sha1
=
"474df5a1f934960ba669b360ab713d0a54283091"
local
-r
gci_mounter_sha1
=
"
6ae71998bf9deba06468b036c2ba126626e0050d
"
local
-r
gci_mounter_sha1
=
"
851e841d8640d6a05e64e22c493f5ac3c4cba561
"
download-or-bust
"
${
rkt_binary_sha1
}
"
"https://storage.googleapis.com/kubernetes-release/rkt/
${
rkt_version
}
/rkt"
download-or-bust
"
${
rkt_stage1_fly_sha1
}
"
"https://storage.googleapis.com/kubernetes-release/rkt/
${
rkt_version
}
/stage1-fly.aci"
download-or-bust
"
${
gci_mounter_sha1
}
"
"https://storage.googleapis.com/kubernetes-release/gci-mounter/gci-mounter-
${
gci_mounter_version
}
.aci"
...
...
cluster/gce/gci/mounter/Changelog
View file @
5b1d875f
...
...
@@ -5,7 +5,3 @@
## v2 (Fri Oct 28 2016 Vishnu Kannan <vishh@google.com>)
- Adding netbase package.
- Digest: sha256:c7dfe059fbbf976fc4284a87eb18adf0f8e0c4cf30a30f5a852842c772a64c2d
## v3 (Fri Nov 11 2016 Jing Xu <jinxu@google.com>)
- Add startmounter.sh script to start rpcbind before mounting for NFSv3
- Digest: sha256:35bc48a1ca97c3971611dc4662d08d131869daa692acb281c7e9e052924e38b1
cluster/gce/gci/mounter/Dockerfile
View file @
5b1d875f
...
...
@@ -16,5 +16,5 @@ FROM ubuntu:xenial
MAINTAINER
vishh@google.com
RUN
apt-get update
&&
apt-get
install
-y
netbase nfs-common
=
1:1.2.8-9ubuntu12 glusterfs-client
=
3.7.6-1ubuntu1
ADD
startmounter.sh /startmounter.sh
ENTRYPOINT
["/
startmounter.sh
"]
ENTRYPOINT
["/
bin/mount
"]
cluster/gce/gci/mounter/Makefile
View file @
5b1d875f
...
...
@@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
TAG
=
v
3
TAG
=
v
2
REGISTRY
=
gcr.io/google_containers
IMAGE
=
gci-mounter
...
...
cluster/gce/gci/mounter/mounter
View file @
5b1d875f
...
...
@@ -18,7 +18,7 @@ set -o errexit
set
-o
nounset
set
-o
pipefail
MOUNTER_VERSION
=
v
3
MOUNTER_VERSION
=
v
2
MOUNTER_USER
=
root
ROOT_DIR
=
/home/kubernetes/bin
RKT_BINARY
=
${
ROOT_DIR
}
/rkt
...
...
@@ -46,18 +46,10 @@ fi
echo
"Running mount using a rkt fly container"
if
[
"$#"
-eq
0
]
;
then
${
RKT_BINARY
}
run
--stage1-path
=
${
STAGE1_ACI
}
\
--insecure-options
=
image
\
--volume
=
kubelet,kind
=
host,source
=
/var/lib/kubelet,readOnly
=
false
,recursive
=
true
\
--mount
volume
=
kubelet,target
=
/var/lib/kubelet
\
${
MOUNTER_IMAGE
}
--user
=
${
MOUNTER_USER
}
--exec
/bin/mount
else
${
RKT_BINARY
}
run
--stage1-path
=
${
STAGE1_ACI
}
\
--insecure-options
=
image
\
--volume
=
kubelet,kind
=
host,source
=
/var/lib/kubelet,readOnly
=
false
,recursive
=
true
\
--mount
volume
=
kubelet,target
=
/var/lib/kubelet
\
${
MOUNTER_IMAGE
}
--user
=
${
MOUNTER_USER
}
--exec
/startmounter.sh
--
"
$@
"
fi
${
RKT_BINARY
}
run
--stage1-path
=
${
STAGE1_ACI
}
\
--insecure-options
=
image
\
--volume
=
kubelet,kind
=
host,source
=
/var/lib/kubelet,readOnly
=
false
,recursive
=
true
\
--mount
volume
=
kubelet,target
=
/var/lib/kubelet
\
${
MOUNTER_IMAGE
}
--user
=
${
MOUNTER_USER
}
--exec
/bin/mount
--
"
$@
"
echo
"Successfully ran mount using a rkt fly container"
cluster/gce/gci/mounter/startmounter.sh
deleted
100644 → 0
View file @
1e09f64a
#!/bin/bash
# Copyright 2016 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.
# start rpcbind if it is not started yet
s
=
`
/etc/init.d/rpcbind status
`
if
[[
$s
==
*
"not running"
*
]]
;
then
echo
"Starting rpcbind: /sbin/rpcbind -w"
/sbin/rpcbind
-w
fi
echo
`
/etc/init.d/rpcbind status
`
# mount with passing paramaters
/bin/mount
"
${
@
}
"
test/e2e/common/volumes.go
View file @
5b1d875f
...
...
@@ -394,40 +394,6 @@ var _ = framework.KubeDescribe("GCP Volumes", func() {
})
////////////////////////////////////////////////////////////////////////
// NFSv3
////////////////////////////////////////////////////////////////////////
framework
.
KubeDescribe
(
"NFSv3"
,
func
()
{
It
(
"should be mountable for NFSv3"
,
func
()
{
config
:=
VolumeTestConfig
{
namespace
:
namespace
.
Name
,
prefix
:
"nfs"
,
serverImage
:
"gcr.io/google_containers/volume-nfs:0.8"
,
serverPorts
:
[]
int
{
2049
,
20048
},
}
defer
func
()
{
if
clean
{
volumeTestCleanup
(
f
,
config
)
}
}()
pod
:=
startVolumeServer
(
f
,
config
)
serverIP
:=
pod
.
Status
.
PodIP
framework
.
Logf
(
"NFS server IP address: %v"
,
serverIP
)
volume
:=
v1
.
VolumeSource
{
NFS
:
&
v1
.
NFSVolumeSource
{
Server
:
serverIP
,
Path
:
"/exports"
,
ReadOnly
:
true
,
},
}
// Must match content of test/images/volumes-tester/nfs/index.html
testVolumeClient
(
f
,
config
,
volume
,
nil
,
"Hello from NFS!"
)
})
})
////////////////////////////////////////////////////////////////////////
// Gluster
////////////////////////////////////////////////////////////////////////
...
...
test/e2e_node/jenkins/gci-init.yaml
View file @
5b1d875f
...
...
@@ -8,5 +8,5 @@ runcmd:
-
mount -B -o remount,exec /home/kubernetes/bin
-
wget https://storage.googleapis.com/kubernetes-release/rkt/v1.18.0/rkt -O /home/kubernetes/bin/rkt
-
wget https://storage.googleapis.com/kubernetes-release/rkt/v1.18.0/stage1-fly.aci -O /home/kubernetes/bin/stage1-fly.aci
-
wget https://storage.googleapis.com/kubernetes-release/gci-mounter/gci-mounter-v
3.aci -O /home/kubernetes/bin/gci-mounter-v3
.aci
-
wget https://storage.googleapis.com/kubernetes-release/gci-mounter/gci-mounter-v
2.aci -O /home/kubernetes/bin/gci-mounter-v2
.aci
-
chmod a+x /home/kubernetes/bin/rkt
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