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
d6192dd1
Commit
d6192dd1
authored
Feb 21, 2016
by
k8s-merge-robot
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #21342 from spxtr/remove-e2e-test
Auto commit by PR queue bot
parents
60c6edae
6f7182e5
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
9 additions
and
29 deletions
+9
-29
Makefile
Makefile
+1
-1
util.sh
cluster/aws/util.sh
+1
-1
util.sh
cluster/gce/util.sh
+1
-1
util.sh
cluster/gke/util.sh
+2
-2
vagrant.md
docs/devel/developer-guides/vagrant.md
+1
-1
conformance-test.sh
hack/conformance-test.sh
+3
-3
e2e-test.sh
hack/e2e-test.sh
+0
-20
No files found.
Makefile
View file @
d6192dd1
...
...
@@ -98,7 +98,7 @@ test_integration:
# Example:
# make test_e2e
test_e2e
:
hack/e2e-test.sh
go run hack/e2e.go
-v
--build
--up
--test
--down
.PHONY
:
test_e2e
# Remove all build artifacts.
...
...
cluster/aws/util.sh
View file @
d6192dd1
...
...
@@ -1434,7 +1434,7 @@ function kube-push {
}
# -----------------------------------------------------------------------------
# Cluster specific test helpers used from hack/e2e
-test.sh
# Cluster specific test helpers used from hack/e2e
.go
# Execute prior to running tests to build a release if required for env.
#
...
...
cluster/gce/util.sh
View file @
d6192dd1
...
...
@@ -1180,7 +1180,7 @@ function kube-push {
}
# -----------------------------------------------------------------------------
# Cluster specific test helpers used from hack/e2e
-test.sh
# Cluster specific test helpers used from hack/e2e
.go
# Execute prior to running tests to build a release if required for env.
#
...
...
cluster/gke/util.sh
View file @
d6192dd1
...
...
@@ -282,8 +282,8 @@ function restart-apiserver() {
}
# Execute after running tests to perform any required clean-up. This is called
# from hack/e2e
-test.sh. This calls kube-down, so the cluster still exists when
#
this
is called.
# from hack/e2e
.go. This calls kube-down, so the cluster still exists when this
# is called.
#
# Assumed vars:
# CLUSTER_NAME
...
...
docs/devel/developer-guides/vagrant.md
View file @
d6192dd1
...
...
@@ -302,7 +302,7 @@ Congratulations!
The following will run all of the end-to-end testing scenarios assuming you set your environment in
`cluster/kube-env.sh`
:
```
sh
NUM_NODES
=
3
hack/e2e-test.sh
NUM_NODES
=
3
go run hack/e2e.go
-v
--build
--up
--test
--down
```
### Troubleshooting
...
...
hack/conformance-test.sh
View file @
d6192dd1
...
...
@@ -39,13 +39,13 @@
# About the conformance test:
# The conformance test checks whether a kubernetes cluster supports
# a minimum set of features to be called "Kubernetes". It is similar
# to `hack/e2e
-test.sh
` but it differs in that:
# - hack/e2e
-test.sh
is intended to test a cluster with binaries built at HEAD,
# to `hack/e2e
.go
` but it differs in that:
# - hack/e2e
.go
is intended to test a cluster with binaries built at HEAD,
# while this conformance test does not care what version the binaries are.
# - this means the user needs to setup a cluster first.
# - this means the user does not need to write any cluster/... scripts. Custom
# clusters can be tested.
# - hack/e2e
-test.sh
is intended to run e2e tests built at HEAD, while
# - hack/e2e
.go
is intended to run e2e tests built at HEAD, while
# this conformance test is intended to be run e2e tests built at a particular
# version. This ensures that all conformance testees run the same set of tests,
# regardless of when they test for conformance.
...
...
hack/e2e-test.sh
deleted
100755 → 0
View file @
60c6edae
#!/bin/bash
# Copyright 2014 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.
# Provided for backwards compatibility
go run
"
$(
dirname
$0
)
/e2e.go"
-v
-build
-up
-test
-down
exit
$?
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