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
121c7046
Commit
121c7046
authored
Nov 15, 2015
by
harry zhang
Committed by
Harry Zhang
Nov 29, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Move parsers into util
parent
c1af9dcb
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
46 additions
and
24 deletions
+46
-24
docker.go
pkg/kubelet/dockertools/docker.go
+2
-6
docker_test.go
pkg/kubelet/dockertools/docker_test.go
+4
-3
rkt.go
pkg/kubelet/rkt/rkt.go
+4
-15
parsers.go
pkg/util/parsers/parsers.go
+36
-0
No files found.
pkg/kubelet/dockertools/docker.go
View file @
121c7046
...
@@ -25,7 +25,6 @@ import (
...
@@ -25,7 +25,6 @@ import (
"strings"
"strings"
"github.com/docker/docker/pkg/jsonmessage"
"github.com/docker/docker/pkg/jsonmessage"
"github.com/docker/docker/pkg/parsers"
docker
"github.com/fsouza/go-dockerclient"
docker
"github.com/fsouza/go-dockerclient"
"github.com/golang/glog"
"github.com/golang/glog"
"k8s.io/kubernetes/pkg/api"
"k8s.io/kubernetes/pkg/api"
...
@@ -35,6 +34,7 @@ import (
...
@@ -35,6 +34,7 @@ import (
"k8s.io/kubernetes/pkg/types"
"k8s.io/kubernetes/pkg/types"
"k8s.io/kubernetes/pkg/util"
"k8s.io/kubernetes/pkg/util"
utilerrors
"k8s.io/kubernetes/pkg/util/errors"
utilerrors
"k8s.io/kubernetes/pkg/util/errors"
"k8s.io/kubernetes/pkg/util/parsers"
)
)
const
(
const
(
...
@@ -115,10 +115,6 @@ func newDockerPuller(client DockerInterface, qps float32, burst int) DockerPulle
...
@@ -115,10 +115,6 @@ func newDockerPuller(client DockerInterface, qps float32, burst int) DockerPulle
}
}
}
}
func
parseImageName
(
image
string
)
(
string
,
string
)
{
return
parsers
.
ParseRepositoryTag
(
image
)
}
func
filterHTTPError
(
err
error
,
image
string
)
error
{
func
filterHTTPError
(
err
error
,
image
string
)
error
{
// docker/docker/pull/11314 prints detailed error info for docker pull.
// docker/docker/pull/11314 prints detailed error info for docker pull.
// When it hits 502, it returns a verbose html output including an inline svg,
// When it hits 502, it returns a verbose html output including an inline svg,
...
@@ -136,7 +132,7 @@ func filterHTTPError(err error, image string) error {
...
@@ -136,7 +132,7 @@ func filterHTTPError(err error, image string) error {
}
}
func
(
p
dockerPuller
)
Pull
(
image
string
,
secrets
[]
api
.
Secret
)
error
{
func
(
p
dockerPuller
)
Pull
(
image
string
,
secrets
[]
api
.
Secret
)
error
{
repoToPull
,
tag
:=
parseImageName
(
image
)
repoToPull
,
tag
:=
parse
rs
.
Parse
ImageName
(
image
)
// If no tag was specified, use the default "latest".
// If no tag was specified, use the default "latest".
if
len
(
tag
)
==
0
{
if
len
(
tag
)
==
0
{
...
...
pkg/kubelet/dockertools/docker_test.go
View file @
121c7046
...
@@ -37,6 +37,7 @@ import (
...
@@ -37,6 +37,7 @@ import (
kubetypes
"k8s.io/kubernetes/pkg/kubelet/types"
kubetypes
"k8s.io/kubernetes/pkg/kubelet/types"
"k8s.io/kubernetes/pkg/types"
"k8s.io/kubernetes/pkg/types"
"k8s.io/kubernetes/pkg/util"
"k8s.io/kubernetes/pkg/util"
"k8s.io/kubernetes/pkg/util/parsers"
)
)
func
verifyCalls
(
t
*
testing
.
T
,
fakeDocker
*
FakeDockerClient
,
calls
[]
string
)
{
func
verifyCalls
(
t
*
testing
.
T
,
fakeDocker
*
FakeDockerClient
,
calls
[]
string
)
{
...
@@ -204,16 +205,16 @@ func TestParseImageName(t *testing.T) {
...
@@ -204,16 +205,16 @@ func TestParseImageName(t *testing.T) {
name
string
name
string
tag
string
tag
string
}{
}{
{
"ubuntu"
,
"ubuntu"
,
""
},
{
"ubuntu"
,
"ubuntu"
,
"
latest
"
},
{
"ubuntu:2342"
,
"ubuntu"
,
"2342"
},
{
"ubuntu:2342"
,
"ubuntu"
,
"2342"
},
{
"ubuntu:latest"
,
"ubuntu"
,
"latest"
},
{
"ubuntu:latest"
,
"ubuntu"
,
"latest"
},
{
"foo/bar:445566"
,
"foo/bar"
,
"445566"
},
{
"foo/bar:445566"
,
"foo/bar"
,
"445566"
},
{
"registry.example.com:5000/foobar"
,
"registry.example.com:5000/foobar"
,
""
},
{
"registry.example.com:5000/foobar"
,
"registry.example.com:5000/foobar"
,
"
latest
"
},
{
"registry.example.com:5000/foobar:5342"
,
"registry.example.com:5000/foobar"
,
"5342"
},
{
"registry.example.com:5000/foobar:5342"
,
"registry.example.com:5000/foobar"
,
"5342"
},
{
"registry.example.com:5000/foobar:latest"
,
"registry.example.com:5000/foobar"
,
"latest"
},
{
"registry.example.com:5000/foobar:latest"
,
"registry.example.com:5000/foobar"
,
"latest"
},
}
}
for
_
,
test
:=
range
tests
{
for
_
,
test
:=
range
tests
{
name
,
tag
:=
parseImageName
(
test
.
imageName
)
name
,
tag
:=
parse
rs
.
Parse
ImageName
(
test
.
imageName
)
if
name
!=
test
.
name
||
tag
!=
test
.
tag
{
if
name
!=
test
.
name
||
tag
!=
test
.
tag
{
t
.
Errorf
(
"Expected name/tag: %s/%s, got %s/%s"
,
test
.
name
,
test
.
tag
,
name
,
tag
)
t
.
Errorf
(
"Expected name/tag: %s/%s, got %s/%s"
,
test
.
name
,
test
.
tag
,
name
,
tag
)
}
}
...
...
pkg/kubelet/rkt/rkt.go
View file @
121c7046
...
@@ -36,7 +36,6 @@ import (
...
@@ -36,7 +36,6 @@ import (
appctypes
"github.com/appc/spec/schema/types"
appctypes
"github.com/appc/spec/schema/types"
"github.com/coreos/go-systemd/unit"
"github.com/coreos/go-systemd/unit"
rktapi
"github.com/coreos/rkt/api/v1alpha"
rktapi
"github.com/coreos/rkt/api/v1alpha"
"github.com/docker/docker/pkg/parsers"
docker
"github.com/fsouza/go-dockerclient"
docker
"github.com/fsouza/go-dockerclient"
"github.com/golang/glog"
"github.com/golang/glog"
"k8s.io/kubernetes/pkg/api"
"k8s.io/kubernetes/pkg/api"
...
@@ -49,6 +48,7 @@ import (
...
@@ -49,6 +48,7 @@ import (
"k8s.io/kubernetes/pkg/types"
"k8s.io/kubernetes/pkg/types"
"k8s.io/kubernetes/pkg/util"
"k8s.io/kubernetes/pkg/util"
utilexec
"k8s.io/kubernetes/pkg/util/exec"
utilexec
"k8s.io/kubernetes/pkg/util/exec"
"k8s.io/kubernetes/pkg/util/parsers"
"k8s.io/kubernetes/pkg/util/sets"
"k8s.io/kubernetes/pkg/util/sets"
)
)
...
@@ -389,23 +389,12 @@ func setApp(app *appctypes.App, c *api.Container, opts *kubecontainer.RunContain
...
@@ -389,23 +389,12 @@ func setApp(app *appctypes.App, c *api.Container, opts *kubecontainer.RunContain
return
setIsolators
(
app
,
c
)
return
setIsolators
(
app
,
c
)
}
}
// parseImageName parses a docker image string into two parts: repo and tag.
// If tag is empty, return the defaultImageTag.
func
parseImageName
(
image
string
)
(
string
,
string
)
{
repoToPull
,
tag
:=
parsers
.
ParseRepositoryTag
(
image
)
// If no tag was specified, use the default "latest".
if
len
(
tag
)
==
0
{
tag
=
defaultImageTag
}
return
repoToPull
,
tag
}
// getImageManifest invokes 'rkt image cat-manifest' to retrive the image manifest
// getImageManifest invokes 'rkt image cat-manifest' to retrive the image manifest
// for the image.
// for the image.
func
(
r
*
Runtime
)
getImageManifest
(
image
string
)
(
*
appcschema
.
ImageManifest
,
error
)
{
func
(
r
*
Runtime
)
getImageManifest
(
image
string
)
(
*
appcschema
.
ImageManifest
,
error
)
{
var
manifest
appcschema
.
ImageManifest
var
manifest
appcschema
.
ImageManifest
repoToPull
,
tag
:=
parseImageName
(
image
)
repoToPull
,
tag
:=
parse
rs
.
Parse
ImageName
(
image
)
imgName
,
err
:=
appctypes
.
SanitizeACIdentifier
(
repoToPull
)
imgName
,
err
:=
appctypes
.
SanitizeACIdentifier
(
repoToPull
)
if
err
!=
nil
{
if
err
!=
nil
{
return
nil
,
err
return
nil
,
err
...
@@ -929,7 +918,7 @@ func (r *Runtime) PullImage(image kubecontainer.ImageSpec, pullSecrets []api.Sec
...
@@ -929,7 +918,7 @@ func (r *Runtime) PullImage(image kubecontainer.ImageSpec, pullSecrets []api.Sec
img
:=
image
.
Image
img
:=
image
.
Image
// TODO(yifan): The credential operation is a copy from dockertools package,
// TODO(yifan): The credential operation is a copy from dockertools package,
// Need to resolve the code duplication.
// Need to resolve the code duplication.
repoToPull
,
_
:=
parseImageName
(
img
)
repoToPull
,
_
:=
parse
rs
.
Parse
ImageName
(
img
)
keyring
,
err
:=
credentialprovider
.
MakeDockerKeyring
(
pullSecrets
,
r
.
dockerKeyring
)
keyring
,
err
:=
credentialprovider
.
MakeDockerKeyring
(
pullSecrets
,
r
.
dockerKeyring
)
if
err
!=
nil
{
if
err
!=
nil
{
return
err
return
err
...
@@ -955,7 +944,7 @@ func (r *Runtime) PullImage(image kubecontainer.ImageSpec, pullSecrets []api.Sec
...
@@ -955,7 +944,7 @@ func (r *Runtime) PullImage(image kubecontainer.ImageSpec, pullSecrets []api.Sec
// TODO(yifan): Searching the image via 'rkt images' might not be the most efficient way.
// TODO(yifan): Searching the image via 'rkt images' might not be the most efficient way.
func
(
r
*
Runtime
)
IsImagePresent
(
image
kubecontainer
.
ImageSpec
)
(
bool
,
error
)
{
func
(
r
*
Runtime
)
IsImagePresent
(
image
kubecontainer
.
ImageSpec
)
(
bool
,
error
)
{
repoToPull
,
tag
:=
parseImageName
(
image
.
Image
)
repoToPull
,
tag
:=
parse
rs
.
Parse
ImageName
(
image
.
Image
)
// Example output of 'rkt image list --fields=name':
// Example output of 'rkt image list --fields=name':
//
//
// NAME
// NAME
...
...
pkg/util/parsers/parsers.go
0 → 100644
View file @
121c7046
/*
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.
*/
package
parsers
import
(
"github.com/docker/docker/pkg/parsers"
)
const
(
defaultImageTag
=
"latest"
)
// parseImageName parses a docker image string into two parts: repo and tag.
// If tag is empty, return the defaultImageTag.
func
ParseImageName
(
image
string
)
(
string
,
string
)
{
repoToPull
,
tag
:=
parsers
.
ParseRepositoryTag
(
image
)
// If no tag was specified, use the default "latest".
if
len
(
tag
)
==
0
{
tag
=
defaultImageTag
}
return
repoToPull
,
tag
}
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