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
125c1e18
Commit
125c1e18
authored
Sep 14, 2016
by
Jerzy Szczepkowski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added e2e framweork and test for HA master.
Added e2e framweork for testing HA master. Added one simple e2e test for HA master.
parent
87b40782
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
178 additions
and
0 deletions
+178
-0
e2e-add-master.sh
hack/e2e-internal/e2e-add-master.sh
+22
-0
e2e-remove-master.sh
hack/e2e-internal/e2e-remove-master.sh
+22
-0
ha_master.go
test/e2e/ha_master.go
+134
-0
No files found.
hack/e2e-internal/e2e-add-master.sh
0 → 100755
View file @
125c1e18
#!/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.
KUBE_ROOT
=
$(
dirname
"
${
BASH_SOURCE
}
"
)
/../..
export
KUBE_EXPERIMENTAL_REPLICATE_EXISTING_MASTER
=
true
source
"
${
KUBE_ROOT
}
/hack/e2e-internal/e2e-up.sh"
hack/e2e-internal/e2e-remove-master.sh
0 → 100755
View file @
125c1e18
#!/bin/bash
# Copyright 2014 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.
KUBE_ROOT
=
$(
dirname
"
${
BASH_SOURCE
}
"
)
/../..
export
KUBE_DELETE_NODES
=
false
source
"
${
KUBE_ROOT
}
/hack/e2e-internal/e2e-down.sh"
test/e2e/ha_master.go
0 → 100644
View file @
125c1e18
/*
Copyright 2015 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.
*/
package
e2e
import
(
"bytes"
"fmt"
.
"github.com/onsi/ginkgo"
client
"k8s.io/kubernetes/pkg/client/unversioned"
"k8s.io/kubernetes/test/e2e/framework"
"os/exec"
"path"
"strconv"
)
func
addMasterReplica
()
error
{
framework
.
Logf
(
fmt
.
Sprintf
(
"Adding a new master replica:"
))
v
,
_
,
err
:=
framework
.
RunCmd
(
path
.
Join
(
framework
.
TestContext
.
RepoRoot
,
"hack/e2e-internal/e2e-add-master.sh"
))
framework
.
Logf
(
"%s"
,
v
)
if
err
!=
nil
{
return
err
}
return
nil
}
func
removeMasterReplica
()
error
{
framework
.
Logf
(
fmt
.
Sprintf
(
"Removing an existing master replica:"
))
v
,
_
,
err
:=
framework
.
RunCmd
(
path
.
Join
(
framework
.
TestContext
.
RepoRoot
,
"hack/e2e-internal/e2e-remove-master.sh"
))
framework
.
Logf
(
"%s"
,
v
)
if
err
!=
nil
{
return
err
}
return
nil
}
func
verifyRCs
(
c
*
client
.
Client
,
ns
string
,
names
[]
string
)
{
for
_
,
name
:=
range
names
{
framework
.
ExpectNoError
(
framework
.
VerifyPods
(
c
,
ns
,
name
,
true
,
1
))
}
}
func
createNewRC
(
c
*
client
.
Client
,
ns
string
,
name
string
)
{
_
,
err
:=
newRCByName
(
c
,
ns
,
name
,
1
)
framework
.
ExpectNoError
(
err
)
}
func
verifyNumberOfMasterReplicas
(
expected
int
)
{
output
,
err
:=
exec
.
Command
(
"gcloud"
,
"compute"
,
"instances"
,
"list"
,
"--project="
+
framework
.
TestContext
.
CloudConfig
.
ProjectID
,
"--zones="
+
framework
.
TestContext
.
CloudConfig
.
Zone
,
"--regexp="
+
framework
.
TestContext
.
CloudConfig
.
MasterName
+
"(-...)?"
,
"--filter=status=RUNNING"
,
"--format=[no-heading]"
)
.
CombinedOutput
()
framework
.
Logf
(
"%s"
,
output
)
framework
.
ExpectNoError
(
err
)
newline
:=
[]
byte
(
"
\n
"
)
replicas
:=
bytes
.
Count
(
output
,
newline
)
framework
.
Logf
(
"Num master replicas/expected: %d/%d"
,
replicas
,
expected
)
if
replicas
!=
expected
{
framework
.
Failf
(
"Wrong number of master replicas"
)
}
}
var
_
=
framework
.
KubeDescribe
(
"HA-master [Disruptive]"
,
func
()
{
f
:=
framework
.
NewDefaultFramework
(
"ha-master"
)
var
c
*
client
.
Client
var
ns
string
var
additionalReplicas
int
var
existingRCs
[]
string
BeforeEach
(
func
()
{
framework
.
SkipUnlessProviderIs
(
"gce"
)
c
=
f
.
Client
ns
=
f
.
Namespace
.
Name
verifyNumberOfMasterReplicas
(
1
)
additionalReplicas
=
0
existingRCs
=
make
([]
string
,
0
)
})
AfterEach
(
func
()
{
// Clean-up additional master replicas if the test execution was broken.
for
i
:=
0
;
i
<
additionalReplicas
;
i
++
{
removeMasterReplica
()
}
})
type
Action
int
const
(
None
Action
=
iota
AddReplica
RemoveReplica
)
step
:=
func
(
action
Action
)
{
switch
action
{
case
None
:
case
AddReplica
:
framework
.
ExpectNoError
(
addMasterReplica
())
additionalReplicas
++
case
RemoveReplica
:
framework
.
ExpectNoError
(
removeMasterReplica
())
additionalReplicas
--
}
verifyNumberOfMasterReplicas
(
additionalReplicas
+
1
)
// Verify that API server works correctly with HA master.
rcName
:=
"ha-master-"
+
strconv
.
Itoa
(
len
(
existingRCs
))
createNewRC
(
c
,
ns
,
rcName
)
existingRCs
=
append
(
existingRCs
,
rcName
)
verifyRCs
(
c
,
ns
,
existingRCs
)
}
It
(
"pods survive addition/removal [Slow]"
,
func
()
{
step
(
None
)
step
(
AddReplica
)
step
(
AddReplica
)
step
(
RemoveReplica
)
step
(
RemoveReplica
)
})
})
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