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
9f06e0f1
Commit
9f06e0f1
authored
Jun 21, 2016
by
k8s-merge-robot
Committed by
GitHub
Jun 21, 2016
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #27665 from iamthemuffinman/master
Automatic merge from submit-queue Fix spelling errors
parents
6cccb872
cd1450b3
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
8 additions
and
7 deletions
+8
-7
service_helper.go
...ation/pkg/federation-controller/service/service_helper.go
+2
-1
util.go
test/e2e/framework/util.go
+2
-2
petset.go
test/e2e/petset.go
+1
-1
garbage_collector_test.go
test/integration/garbage_collector_test.go
+1
-1
kubectl_test.go
test/integration/kubectl_test.go
+1
-1
persistent_volumes_test.go
test/integration/persistent_volumes_test.go
+1
-1
No files found.
federation/pkg/federation-controller/service/service_helper.go
View file @
9f06e0f1
...
...
@@ -26,9 +26,10 @@ import (
cache
"k8s.io/kubernetes/pkg/client/cache"
"k8s.io/kubernetes/pkg/controller"
"github.com/golang/glog"
"reflect"
"sort"
"github.com/golang/glog"
)
// worker runs a worker thread that just dequeues items, processes them, and marks them done.
...
...
test/e2e/framework/util.go
View file @
9f06e0f1
...
...
@@ -1799,7 +1799,7 @@ func Cleanup(filePath, ns string, selectors ...string) {
AssertCleanup
(
ns
,
selectors
...
)
}
// Asserts that cleanup of a namespace wrt selectors occured.
// Asserts that cleanup of a namespace wrt selectors occur
r
ed.
func
AssertCleanup
(
ns
string
,
selectors
...
string
)
{
var
nsArg
string
if
ns
!=
""
{
...
...
@@ -3734,7 +3734,7 @@ func RestartApiserver(c *client.Client) error {
if
ProviderIs
(
"gce"
,
"aws"
)
{
return
sshRestartMaster
()
}
// GKE doesn't allow ssh access
s
, so use a same-version master
// GKE doesn't allow ssh access, so use a same-version master
// upgrade to teardown/recreate master.
v
,
err
:=
c
.
ServerVersion
()
if
err
!=
nil
{
...
...
test/e2e/petset.go
View file @
9f06e0f1
...
...
@@ -449,7 +449,7 @@ func (p *petSetTester) execInPets(ps *apps.PetSet, cmd string) error {
}
func
(
p
*
petSetTester
)
saturate
(
ps
*
apps
.
PetSet
)
{
// TO
OD
: Watch events and check that creation timestamps don't overlap
// TO
DO
: Watch events and check that creation timestamps don't overlap
for
i
:=
0
;
i
<
ps
.
Spec
.
Replicas
;
i
++
{
framework
.
Logf
(
"Waiting for pet at index "
+
fmt
.
Sprintf
(
"%v"
,
i
+
1
)
+
" to enter Running"
)
p
.
waitForRunning
(
i
+
1
,
ps
)
...
...
test/integration/garbage_collector_test.go
View file @
9f06e0f1
...
...
@@ -180,7 +180,7 @@ func TestCascadingDeletion(t *testing.T) {
t
.
Fatalf
(
"Failed to create Pod: %v"
,
err
)
}
// this pod shouldn't be cascadingly deleted, because it has a valid referen
e
ce.
// this pod shouldn't be cascadingly deleted, because it has a valid reference.
pod
=
newPod
(
oneValidOwnerPodName
,
[]
v1
.
OwnerReference
{
{
UID
:
toBeDeletedRC
.
ObjectMeta
.
UID
,
Name
:
toBeDeletedRCName
},
{
UID
:
remainingRC
.
ObjectMeta
.
UID
,
Name
:
remainingRCName
},
...
...
test/integration/kubectl_test.go
View file @
9f06e0f1
...
...
@@ -37,7 +37,7 @@ func TestKubectlValidation(t *testing.T) {
{
`{"apiVersion": "v1", "kind": "Pod"}`
,
false
},
// The following test the experimental api.
// TO
OD
: Replace with something more robust. These may move.
// TO
DO
: Replace with something more robust. These may move.
{
`{"apiVersion": "extensions/v1beta1", "kind": "Ingress"}`
,
false
},
{
`{"apiVersion": "extensions/v1beta1", "kind": "Job"}`
,
false
},
{
`{"apiVersion": "vNotAVersion", "kind": "Job"}`
,
true
},
...
...
test/integration/persistent_volumes_test.go
View file @
9f06e0f1
...
...
@@ -48,7 +48,7 @@ func init() {
requireEtcd
()
}
// Several tests in this file are configurable by enviroment variables:
// Several tests in this file are configurable by enviro
n
ment variables:
// KUBE_INTEGRATION_PV_OBJECTS - nr. of PVs/PVCs to be created
// (100 by default)
// KUBE_INTEGRATION_PV_SYNC_PERIOD - volume controller sync period
...
...
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