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
e6e67e26
Commit
e6e67e26
authored
Feb 04, 2015
by
Tim Hockin
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #4124 from brendandburns/e2e2
Fix service generation and add tests I should have included in the first place.
parents
550b98eb
fa6ddf13
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
152 additions
and
9 deletions
+152
-9
expose.go
pkg/kubectl/cmd/expose.go
+2
-3
service.go
pkg/kubectl/service.go
+9
-6
service_test.go
pkg/kubectl/service_test.go
+141
-0
No files found.
pkg/kubectl/cmd/expose.go
View file @
e6e67e26
...
@@ -51,9 +51,6 @@ $ kubectl expose streamer --port=4100 --protocol=udp --service-name=video-stream
...
@@ -51,9 +51,6 @@ $ kubectl expose streamer --port=4100 --protocol=udp --service-name=video-stream
client
,
err
:=
f
.
Client
(
cmd
)
client
,
err
:=
f
.
Client
(
cmd
)
checkErr
(
err
)
checkErr
(
err
)
rc
,
err
:=
client
.
ReplicationControllers
(
namespace
)
.
Get
(
args
[
0
])
checkErr
(
err
)
generatorName
:=
GetFlagString
(
cmd
,
"generator"
)
generatorName
:=
GetFlagString
(
cmd
,
"generator"
)
generator
,
found
:=
kubectl
.
Generators
[
generatorName
]
generator
,
found
:=
kubectl
.
Generators
[
generatorName
]
if
!
found
{
if
!
found
{
...
@@ -70,6 +67,8 @@ $ kubectl expose streamer --port=4100 --protocol=udp --service-name=video-stream
...
@@ -70,6 +67,8 @@ $ kubectl expose streamer --port=4100 --protocol=udp --service-name=video-stream
params
[
"name"
]
=
GetFlagString
(
cmd
,
"service-name"
)
params
[
"name"
]
=
GetFlagString
(
cmd
,
"service-name"
)
}
}
if
_
,
found
:=
params
[
"selector"
];
!
found
{
if
_
,
found
:=
params
[
"selector"
];
!
found
{
rc
,
err
:=
client
.
ReplicationControllers
(
namespace
)
.
Get
(
args
[
0
])
checkErr
(
err
)
params
[
"selector"
]
=
kubectl
.
MakeLabels
(
rc
.
Spec
.
Selector
)
params
[
"selector"
]
=
kubectl
.
MakeLabels
(
rc
.
Spec
.
Selector
)
}
}
if
GetFlagBool
(
cmd
,
"create-external-load-balancer"
)
{
if
GetFlagBool
(
cmd
,
"create-external-load-balancer"
)
{
...
...
pkg/kubectl/service.go
View file @
e6e67e26
...
@@ -49,7 +49,11 @@ func (ServiceGenerator) Generate(params map[string]string) (runtime.Object, erro
...
@@ -49,7 +49,11 @@ func (ServiceGenerator) Generate(params map[string]string) (runtime.Object, erro
if
!
found
{
if
!
found
{
return
nil
,
fmt
.
Errorf
(
"'name' is a required parameter."
)
return
nil
,
fmt
.
Errorf
(
"'name' is a required parameter."
)
}
}
port
,
err
:=
strconv
.
Atoi
(
params
[
"port"
])
portString
,
found
:=
params
[
"port"
]
if
!
found
{
return
nil
,
fmt
.
Errorf
(
"'port' is a required parameter."
)
}
port
,
err
:=
strconv
.
Atoi
(
portString
)
if
err
!=
nil
{
if
err
!=
nil
{
return
nil
,
err
return
nil
,
err
}
}
...
@@ -65,11 +69,10 @@ func (ServiceGenerator) Generate(params map[string]string) (runtime.Object, erro
...
@@ -65,11 +69,10 @@ func (ServiceGenerator) Generate(params map[string]string) (runtime.Object, erro
}
}
containerPort
,
found
:=
params
[
"container-port"
]
containerPort
,
found
:=
params
[
"container-port"
]
if
found
&&
len
(
containerPort
)
>
0
{
if
found
&&
len
(
containerPort
)
>
0
{
cPort
,
err
:=
strconv
.
Atoi
(
containerPort
)
if
cPort
,
err
:=
strconv
.
Atoi
(
containerPort
);
err
!=
nil
{
if
err
!=
nil
{
service
.
Spec
.
ContainerPort
=
util
.
NewIntOrStringFromInt
(
cPort
)
}
else
{
service
.
Spec
.
ContainerPort
=
util
.
NewIntOrStringFromString
(
containerPort
)
service
.
Spec
.
ContainerPort
=
util
.
NewIntOrStringFromString
(
containerPort
)
}
else
{
service
.
Spec
.
ContainerPort
=
util
.
NewIntOrStringFromInt
(
cPort
)
}
}
}
else
{
}
else
{
service
.
Spec
.
ContainerPort
=
util
.
NewIntOrStringFromInt
(
port
)
service
.
Spec
.
ContainerPort
=
util
.
NewIntOrStringFromInt
(
port
)
...
@@ -77,7 +80,7 @@ func (ServiceGenerator) Generate(params map[string]string) (runtime.Object, erro
...
@@ -77,7 +80,7 @@ func (ServiceGenerator) Generate(params map[string]string) (runtime.Object, erro
if
params
[
"create-external-load-balancer"
]
==
"true"
{
if
params
[
"create-external-load-balancer"
]
==
"true"
{
service
.
Spec
.
CreateExternalLoadBalancer
=
true
service
.
Spec
.
CreateExternalLoadBalancer
=
true
}
}
if
len
(
params
[
"public-ip"
])
=
=
0
{
if
len
(
params
[
"public-ip"
])
!
=
0
{
service
.
Spec
.
PublicIPs
=
[]
string
{
params
[
"public-ip"
]}
service
.
Spec
.
PublicIPs
=
[]
string
{
params
[
"public-ip"
]}
}
}
return
&
service
,
nil
return
&
service
,
nil
...
...
pkg/kubectl/service_test.go
0 → 100644
View file @
e6e67e26
/*
Copyright 2014 Google Inc. 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
kubectl
import
(
"reflect"
"testing"
"github.com/GoogleCloudPlatform/kubernetes/pkg/api"
"github.com/GoogleCloudPlatform/kubernetes/pkg/util"
)
func
TestGenerateService
(
t
*
testing
.
T
)
{
tests
:=
[]
struct
{
params
map
[
string
]
string
expected
api
.
Service
}{
{
params
:
map
[
string
]
string
{
"selector"
:
"foo=bar,baz=blah"
,
"name"
:
"test"
,
"port"
:
"80"
,
"protocol"
:
"TCP"
,
"container-port"
:
"1234"
,
},
expected
:
api
.
Service
{
ObjectMeta
:
api
.
ObjectMeta
{
Name
:
"test"
,
},
Spec
:
api
.
ServiceSpec
{
Selector
:
map
[
string
]
string
{
"foo"
:
"bar"
,
"baz"
:
"blah"
,
},
Port
:
80
,
Protocol
:
"TCP"
,
ContainerPort
:
util
.
NewIntOrStringFromInt
(
1234
),
},
},
},
{
params
:
map
[
string
]
string
{
"selector"
:
"foo=bar,baz=blah"
,
"name"
:
"test"
,
"port"
:
"80"
,
"protocol"
:
"UDP"
,
"container-port"
:
"foobar"
,
},
expected
:
api
.
Service
{
ObjectMeta
:
api
.
ObjectMeta
{
Name
:
"test"
,
},
Spec
:
api
.
ServiceSpec
{
Selector
:
map
[
string
]
string
{
"foo"
:
"bar"
,
"baz"
:
"blah"
,
},
Port
:
80
,
Protocol
:
"UDP"
,
ContainerPort
:
util
.
NewIntOrStringFromString
(
"foobar"
),
},
},
},
{
params
:
map
[
string
]
string
{
"selector"
:
"foo=bar,baz=blah"
,
"name"
:
"test"
,
"port"
:
"80"
,
"protocol"
:
"UDP"
,
"container-port"
:
"foobar"
,
"public-ip"
:
"1.2.3.4"
,
},
expected
:
api
.
Service
{
ObjectMeta
:
api
.
ObjectMeta
{
Name
:
"test"
,
},
Spec
:
api
.
ServiceSpec
{
Selector
:
map
[
string
]
string
{
"foo"
:
"bar"
,
"baz"
:
"blah"
,
},
Port
:
80
,
Protocol
:
"UDP"
,
PublicIPs
:
[]
string
{
"1.2.3.4"
},
ContainerPort
:
util
.
NewIntOrStringFromString
(
"foobar"
),
},
},
},
{
params
:
map
[
string
]
string
{
"selector"
:
"foo=bar,baz=blah"
,
"name"
:
"test"
,
"port"
:
"80"
,
"protocol"
:
"UDP"
,
"container-port"
:
"foobar"
,
"public-ip"
:
"1.2.3.4"
,
"create-external-load-balancer"
:
"true"
,
},
expected
:
api
.
Service
{
ObjectMeta
:
api
.
ObjectMeta
{
Name
:
"test"
,
},
Spec
:
api
.
ServiceSpec
{
Selector
:
map
[
string
]
string
{
"foo"
:
"bar"
,
"baz"
:
"blah"
,
},
Port
:
80
,
Protocol
:
"UDP"
,
PublicIPs
:
[]
string
{
"1.2.3.4"
},
ContainerPort
:
util
.
NewIntOrStringFromString
(
"foobar"
),
CreateExternalLoadBalancer
:
true
,
},
},
},
}
generator
:=
ServiceGenerator
{}
for
_
,
test
:=
range
tests
{
obj
,
err
:=
generator
.
Generate
(
test
.
params
)
if
!
reflect
.
DeepEqual
(
obj
,
&
test
.
expected
)
{
t
.
Errorf
(
"expected:
\n
%#v
\n
got
\n
%#v
\n
"
,
&
test
.
expected
,
obj
)
}
if
err
!=
nil
{
t
.
Errorf
(
"unexpected error: %v"
,
err
)
}
}
}
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