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
45d73a1c
Commit
45d73a1c
authored
Sep 18, 2017
by
shashidharatd
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Move k/test/e2e_federation package to k/federation/test/e2e
parent
3eb5ba80
Hide whitespace changes
Inline
Side-by-side
Showing
24 changed files
with
29 additions
and
31 deletions
+29
-31
BUILD
federation/test/e2e/BUILD
+0
-0
OWNERS
federation/test/e2e/OWNERS
+0
-0
README.md
federation/test/e2e/README.md
+0
-2
apiserver.go
federation/test/e2e/apiserver.go
+2
-2
authn.go
federation/test/e2e/authn.go
+2
-2
crud.go
federation/test/e2e/crud.go
+2
-2
event.go
federation/test/e2e/event.go
+2
-2
BUILD
federation/test/e2e/framework/BUILD
+0
-0
cluster.go
federation/test/e2e/framework/cluster.go
+0
-0
crudtester.go
federation/test/e2e/framework/crudtester.go
+0
-0
framework.go
federation/test/e2e/framework/framework.go
+0
-0
util.go
federation/test/e2e/framework/util.go
+0
-0
ingress.go
federation/test/e2e/ingress.go
+2
-2
job.go
federation/test/e2e/job.go
+2
-2
namespace.go
federation/test/e2e/namespace.go
+2
-2
replicaset.go
federation/test/e2e/replicaset.go
+2
-2
service.go
federation/test/e2e/service.go
+2
-2
upgrade.go
federation/test/e2e/upgrade.go
+3
-3
BUILD
federation/test/e2e/upgrades/BUILD
+0
-0
simple.go
federation/test/e2e/upgrades/simple.go
+1
-1
upgrade.go
federation/test/e2e/upgrades/upgrade.go
+1
-1
util.go
federation/test/e2e/util.go
+2
-2
.golint_failures
hack/.golint_failures
+3
-3
e2e.go
test/e2e/e2e.go
+1
-1
No files found.
test/e2e_federation
/BUILD
→
federation/test/e2e
/BUILD
View file @
45d73a1c
File moved
test/e2e_federation
/OWNERS
→
federation/test/e2e
/OWNERS
View file @
45d73a1c
File moved
test/e2e_federation
/README.md
→
federation/test/e2e
/README.md
View file @
45d73a1c
See
[
e2e-tests
](
https://git.k8s.io/community/contributors/devel/e2e-tests.md#federation-e2e-tests
)
See
[
e2e-tests
](
https://git.k8s.io/community/contributors/devel/e2e-tests.md#federation-e2e-tests
)
[

]()
test/e2e_federation
/apiserver.go
→
federation/test/e2e
/apiserver.go
View file @
45d73a1c
...
@@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
...
@@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
limitations under the License.
limitations under the License.
*/
*/
package
e2e
_federation
package
e2e
import
(
import
(
"fmt"
"fmt"
...
@@ -23,8 +23,8 @@ import (
...
@@ -23,8 +23,8 @@ import (
.
"github.com/onsi/gomega"
.
"github.com/onsi/gomega"
"k8s.io/api/core/v1"
"k8s.io/api/core/v1"
metav1
"k8s.io/apimachinery/pkg/apis/meta/v1"
metav1
"k8s.io/apimachinery/pkg/apis/meta/v1"
fedframework
"k8s.io/kubernetes/federation/test/e2e/framework"
"k8s.io/kubernetes/test/e2e/framework"
"k8s.io/kubernetes/test/e2e/framework"
fedframework
"k8s.io/kubernetes/test/e2e_federation/framework"
)
)
// Create/delete cluster api objects
// Create/delete cluster api objects
...
...
test/e2e_federation
/authn.go
→
federation/test/e2e
/authn.go
View file @
45d73a1c
...
@@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
...
@@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
limitations under the License.
limitations under the License.
*/
*/
package
e2e
_federation
package
e2e
import
(
import
(
"fmt"
"fmt"
...
@@ -22,8 +22,8 @@ import (
...
@@ -22,8 +22,8 @@ import (
"k8s.io/apimachinery/pkg/api/errors"
"k8s.io/apimachinery/pkg/api/errors"
"k8s.io/client-go/tools/clientcmd"
"k8s.io/client-go/tools/clientcmd"
"k8s.io/kubernetes/federation/client/clientset_generated/federation_clientset"
"k8s.io/kubernetes/federation/client/clientset_generated/federation_clientset"
fedframework
"k8s.io/kubernetes/federation/test/e2e/framework"
"k8s.io/kubernetes/test/e2e/framework"
"k8s.io/kubernetes/test/e2e/framework"
fedframework
"k8s.io/kubernetes/test/e2e_federation/framework"
.
"github.com/onsi/ginkgo"
.
"github.com/onsi/ginkgo"
.
"github.com/onsi/gomega"
.
"github.com/onsi/gomega"
...
...
test/e2e_federation
/crud.go
→
federation/test/e2e
/crud.go
View file @
45d73a1c
...
@@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
...
@@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
limitations under the License.
limitations under the License.
*/
*/
package
e2e
_federation
package
e2e
import
(
import
(
"fmt"
"fmt"
...
@@ -23,8 +23,8 @@ import (
...
@@ -23,8 +23,8 @@ import (
kubeclientset
"k8s.io/client-go/kubernetes"
kubeclientset
"k8s.io/client-go/kubernetes"
"k8s.io/kubernetes/federation/pkg/federatedtypes"
"k8s.io/kubernetes/federation/pkg/federatedtypes"
fedframework
"k8s.io/kubernetes/federation/test/e2e/framework"
"k8s.io/kubernetes/test/e2e/framework"
"k8s.io/kubernetes/test/e2e/framework"
fedframework
"k8s.io/kubernetes/test/e2e_federation/framework"
)
)
var
_
=
framework
.
KubeDescribe
(
"Federated types [Feature:Federation][Experimental] "
,
func
()
{
var
_
=
framework
.
KubeDescribe
(
"Federated types [Feature:Federation][Experimental] "
,
func
()
{
...
...
test/e2e_federation
/event.go
→
federation/test/e2e
/event.go
View file @
45d73a1c
...
@@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
...
@@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
limitations under the License.
limitations under the License.
*/
*/
package
e2e
_federation
package
e2e
import
(
import
(
"fmt"
"fmt"
...
@@ -23,8 +23,8 @@ import (
...
@@ -23,8 +23,8 @@ import (
"k8s.io/api/core/v1"
"k8s.io/api/core/v1"
metav1
"k8s.io/apimachinery/pkg/apis/meta/v1"
metav1
"k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/kubernetes/federation/client/clientset_generated/federation_clientset"
"k8s.io/kubernetes/federation/client/clientset_generated/federation_clientset"
fedframework
"k8s.io/kubernetes/federation/test/e2e/framework"
"k8s.io/kubernetes/test/e2e/framework"
"k8s.io/kubernetes/test/e2e/framework"
fedframework
"k8s.io/kubernetes/test/e2e_federation/framework"
.
"github.com/onsi/gomega"
.
"github.com/onsi/gomega"
)
)
...
...
test/e2e_federation
/framework/BUILD
→
federation/test/e2e
/framework/BUILD
View file @
45d73a1c
File moved
test/e2e_federation
/framework/cluster.go
→
federation/test/e2e
/framework/cluster.go
View file @
45d73a1c
File moved
test/e2e_federation
/framework/crudtester.go
→
federation/test/e2e
/framework/crudtester.go
View file @
45d73a1c
File moved
test/e2e_federation
/framework/framework.go
→
federation/test/e2e
/framework/framework.go
View file @
45d73a1c
File moved
test/e2e_federation
/framework/util.go
→
federation/test/e2e
/framework/util.go
View file @
45d73a1c
File moved
test/e2e_federation
/ingress.go
→
federation/test/e2e
/ingress.go
View file @
45d73a1c
...
@@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
...
@@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
limitations under the License.
limitations under the License.
*/
*/
package
e2e
_federation
package
e2e
import
(
import
(
"crypto/tls"
"crypto/tls"
...
@@ -37,8 +37,8 @@ import (
...
@@ -37,8 +37,8 @@ import (
fedclientset
"k8s.io/kubernetes/federation/client/clientset_generated/federation_clientset"
fedclientset
"k8s.io/kubernetes/federation/client/clientset_generated/federation_clientset"
"k8s.io/kubernetes/federation/pkg/federation-controller/util"
"k8s.io/kubernetes/federation/pkg/federation-controller/util"
fedframework
"k8s.io/kubernetes/federation/test/e2e/framework"
"k8s.io/kubernetes/test/e2e/framework"
"k8s.io/kubernetes/test/e2e/framework"
fedframework
"k8s.io/kubernetes/test/e2e_federation/framework"
.
"github.com/onsi/ginkgo"
.
"github.com/onsi/ginkgo"
.
"github.com/onsi/gomega"
.
"github.com/onsi/gomega"
...
...
test/e2e_federation
/job.go
→
federation/test/e2e
/job.go
View file @
45d73a1c
...
@@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
...
@@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
limitations under the License.
limitations under the License.
*/
*/
package
e2e
_federation
package
e2e
import
(
import
(
"fmt"
"fmt"
...
@@ -27,8 +27,8 @@ import (
...
@@ -27,8 +27,8 @@ import (
"k8s.io/apimachinery/pkg/util/wait"
"k8s.io/apimachinery/pkg/util/wait"
fedclientset
"k8s.io/kubernetes/federation/client/clientset_generated/federation_clientset"
fedclientset
"k8s.io/kubernetes/federation/client/clientset_generated/federation_clientset"
fedutil
"k8s.io/kubernetes/federation/pkg/federation-controller/util"
fedutil
"k8s.io/kubernetes/federation/pkg/federation-controller/util"
fedframework
"k8s.io/kubernetes/federation/test/e2e/framework"
"k8s.io/kubernetes/test/e2e/framework"
"k8s.io/kubernetes/test/e2e/framework"
fedframework
"k8s.io/kubernetes/test/e2e_federation/framework"
imageutils
"k8s.io/kubernetes/test/utils/image"
imageutils
"k8s.io/kubernetes/test/utils/image"
.
"github.com/onsi/ginkgo"
.
"github.com/onsi/ginkgo"
...
...
test/e2e_federation
/namespace.go
→
federation/test/e2e
/namespace.go
View file @
45d73a1c
...
@@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
...
@@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
limitations under the License.
limitations under the License.
*/
*/
package
e2e
_federation
package
e2e
import
(
import
(
"fmt"
"fmt"
...
@@ -27,9 +27,9 @@ import (
...
@@ -27,9 +27,9 @@ import (
metav1
"k8s.io/apimachinery/pkg/apis/meta/v1"
metav1
"k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/util/wait"
"k8s.io/apimachinery/pkg/util/wait"
clientset
"k8s.io/kubernetes/federation/client/clientset_generated/federation_clientset/typed/core/v1"
clientset
"k8s.io/kubernetes/federation/client/clientset_generated/federation_clientset/typed/core/v1"
fedframework
"k8s.io/kubernetes/federation/test/e2e/framework"
k8s_api_v1
"k8s.io/kubernetes/pkg/api/v1"
k8s_api_v1
"k8s.io/kubernetes/pkg/api/v1"
"k8s.io/kubernetes/test/e2e/framework"
"k8s.io/kubernetes/test/e2e/framework"
fedframework
"k8s.io/kubernetes/test/e2e_federation/framework"
.
"github.com/onsi/ginkgo"
.
"github.com/onsi/ginkgo"
)
)
...
...
test/e2e_federation
/replicaset.go
→
federation/test/e2e
/replicaset.go
View file @
45d73a1c
...
@@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
...
@@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
limitations under the License.
limitations under the License.
*/
*/
package
e2e
_federation
package
e2e
import
(
import
(
"encoding/json"
"encoding/json"
...
@@ -28,8 +28,8 @@ import (
...
@@ -28,8 +28,8 @@ import (
"k8s.io/apimachinery/pkg/util/wait"
"k8s.io/apimachinery/pkg/util/wait"
fedclientset
"k8s.io/kubernetes/federation/client/clientset_generated/federation_clientset"
fedclientset
"k8s.io/kubernetes/federation/client/clientset_generated/federation_clientset"
fedutil
"k8s.io/kubernetes/federation/pkg/federation-controller/util"
fedutil
"k8s.io/kubernetes/federation/pkg/federation-controller/util"
fedframework
"k8s.io/kubernetes/federation/test/e2e/framework"
"k8s.io/kubernetes/test/e2e/framework"
"k8s.io/kubernetes/test/e2e/framework"
fedframework
"k8s.io/kubernetes/test/e2e_federation/framework"
.
"github.com/onsi/ginkgo"
.
"github.com/onsi/ginkgo"
.
"github.com/onsi/gomega"
.
"github.com/onsi/gomega"
...
...
test/e2e_federation
/service.go
→
federation/test/e2e
/service.go
View file @
45d73a1c
...
@@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
...
@@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
limitations under the License.
limitations under the License.
*/
*/
package
e2e
_federation
package
e2e
import
(
import
(
"fmt"
"fmt"
...
@@ -29,8 +29,8 @@ import (
...
@@ -29,8 +29,8 @@ import (
metav1
"k8s.io/apimachinery/pkg/apis/meta/v1"
metav1
"k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/util/wait"
"k8s.io/apimachinery/pkg/util/wait"
fedclientset
"k8s.io/kubernetes/federation/client/clientset_generated/federation_clientset"
fedclientset
"k8s.io/kubernetes/federation/client/clientset_generated/federation_clientset"
fedframework
"k8s.io/kubernetes/federation/test/e2e/framework"
"k8s.io/kubernetes/test/e2e/framework"
"k8s.io/kubernetes/test/e2e/framework"
fedframework
"k8s.io/kubernetes/test/e2e_federation/framework"
.
"github.com/onsi/ginkgo"
.
"github.com/onsi/ginkgo"
)
)
...
...
test/e2e_federation
/upgrade.go
→
federation/test/e2e
/upgrade.go
View file @
45d73a1c
...
@@ -14,13 +14,13 @@ See the License for the specific language governing permissions and
...
@@ -14,13 +14,13 @@ See the License for the specific language governing permissions and
limitations under the License.
limitations under the License.
*/
*/
package
e2e
_federation
package
e2e
import
(
import
(
fedframework
"k8s.io/kubernetes/federation/test/e2e/framework"
"k8s.io/kubernetes/federation/test/e2e/upgrades"
"k8s.io/kubernetes/test/e2e/chaosmonkey"
"k8s.io/kubernetes/test/e2e/chaosmonkey"
"k8s.io/kubernetes/test/e2e/framework"
"k8s.io/kubernetes/test/e2e/framework"
fedframework
"k8s.io/kubernetes/test/e2e_federation/framework"
"k8s.io/kubernetes/test/e2e_federation/upgrades"
.
"github.com/onsi/ginkgo"
.
"github.com/onsi/ginkgo"
)
)
...
...
test/e2e_federation
/upgrades/BUILD
→
federation/test/e2e
/upgrades/BUILD
View file @
45d73a1c
File moved
test/e2e_federation
/upgrades/simple.go
→
federation/test/e2e
/upgrades/simple.go
View file @
45d73a1c
...
@@ -22,7 +22,7 @@ import (
...
@@ -22,7 +22,7 @@ import (
pkgruntime
"k8s.io/apimachinery/pkg/runtime"
pkgruntime
"k8s.io/apimachinery/pkg/runtime"
"k8s.io/kubernetes/federation/pkg/federatedtypes"
"k8s.io/kubernetes/federation/pkg/federatedtypes"
crudtester
"k8s.io/kubernetes/federation/pkg/federatedtypes/crudtester"
crudtester
"k8s.io/kubernetes/federation/pkg/federatedtypes/crudtester"
fedframework
"k8s.io/kubernetes/
test/e2e_federation
/framework"
fedframework
"k8s.io/kubernetes/
federation/test/e2e
/framework"
.
"github.com/onsi/ginkgo"
.
"github.com/onsi/ginkgo"
)
)
...
...
test/e2e_federation
/upgrades/upgrade.go
→
federation/test/e2e
/upgrades/upgrade.go
View file @
45d73a1c
...
@@ -18,7 +18,7 @@ limitations under the License.
...
@@ -18,7 +18,7 @@ limitations under the License.
// features before, during, and after different types of upgrades.
// features before, during, and after different types of upgrades.
package
upgrades
package
upgrades
import
fedframework
"k8s.io/kubernetes/
test/e2e_federation
/framework"
import
fedframework
"k8s.io/kubernetes/
federation/test/e2e
/framework"
// FederationUpgradeType represents different types of federation upgrades.
// FederationUpgradeType represents different types of federation upgrades.
type
FederationUpgradeType
int
type
FederationUpgradeType
int
...
...
test/e2e_federation
/util.go
→
federation/test/e2e
/util.go
View file @
45d73a1c
...
@@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
...
@@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
limitations under the License.
limitations under the License.
*/
*/
package
e2e
_federation
package
e2e
import
(
import
(
"fmt"
"fmt"
...
@@ -29,10 +29,10 @@ import (
...
@@ -29,10 +29,10 @@ import (
kubeclientset
"k8s.io/client-go/kubernetes"
kubeclientset
"k8s.io/client-go/kubernetes"
federationapi
"k8s.io/kubernetes/federation/apis/federation/v1beta1"
federationapi
"k8s.io/kubernetes/federation/apis/federation/v1beta1"
fedclientset
"k8s.io/kubernetes/federation/client/clientset_generated/federation_clientset"
fedclientset
"k8s.io/kubernetes/federation/client/clientset_generated/federation_clientset"
fedframework
"k8s.io/kubernetes/federation/test/e2e/framework"
"k8s.io/kubernetes/pkg/cloudprovider"
"k8s.io/kubernetes/pkg/cloudprovider"
"k8s.io/kubernetes/test/e2e/common"
"k8s.io/kubernetes/test/e2e/common"
"k8s.io/kubernetes/test/e2e/framework"
"k8s.io/kubernetes/test/e2e/framework"
fedframework
"k8s.io/kubernetes/test/e2e_federation/framework"
.
"github.com/onsi/ginkgo"
.
"github.com/onsi/ginkgo"
.
"github.com/onsi/gomega"
.
"github.com/onsi/gomega"
...
...
hack/.golint_failures
View file @
45d73a1c
...
@@ -59,6 +59,9 @@ federation/pkg/kubefed/testing
...
@@ -59,6 +59,9 @@ federation/pkg/kubefed/testing
federation/pkg/kubefed/util
federation/pkg/kubefed/util
federation/registry/cluster
federation/registry/cluster
federation/registry/cluster/etcd
federation/registry/cluster/etcd
federation/test/e2e
federation/test/e2e/framework
federation/test/e2e/upgrades
pkg/api/endpoints
pkg/api/endpoints
pkg/api/helper
pkg/api/helper
pkg/api/helper/qos
pkg/api/helper/qos
...
@@ -791,9 +794,6 @@ test/e2e/storage
...
@@ -791,9 +794,6 @@ test/e2e/storage
test/e2e/upgrades
test/e2e/upgrades
test/e2e/upgrades/apps
test/e2e/upgrades/apps
test/e2e/upgrades/storage
test/e2e/upgrades/storage
test/e2e_federation
test/e2e_federation/framework
test/e2e_federation/upgrades
test/e2e_node
test/e2e_node
test/e2e_node/builder
test/e2e_node/builder
test/e2e_node/environment
test/e2e_node/environment
...
...
test/e2e/e2e.go
View file @
45d73a1c
...
@@ -34,6 +34,7 @@ import (
...
@@ -34,6 +34,7 @@ import (
metav1
"k8s.io/apimachinery/pkg/apis/meta/v1"
metav1
"k8s.io/apimachinery/pkg/apis/meta/v1"
runtimeutils
"k8s.io/apimachinery/pkg/util/runtime"
runtimeutils
"k8s.io/apimachinery/pkg/util/runtime"
clientset
"k8s.io/client-go/kubernetes"
clientset
"k8s.io/client-go/kubernetes"
federationtest
"k8s.io/kubernetes/federation/test/e2e"
"k8s.io/kubernetes/pkg/cloudprovider/providers/azure"
"k8s.io/kubernetes/pkg/cloudprovider/providers/azure"
gcecloud
"k8s.io/kubernetes/pkg/cloudprovider/providers/gce"
gcecloud
"k8s.io/kubernetes/pkg/cloudprovider/providers/gce"
"k8s.io/kubernetes/pkg/kubectl/util/logs"
"k8s.io/kubernetes/pkg/kubectl/util/logs"
...
@@ -42,7 +43,6 @@ import (
...
@@ -42,7 +43,6 @@ import (
"k8s.io/kubernetes/test/e2e/framework/ginkgowrapper"
"k8s.io/kubernetes/test/e2e/framework/ginkgowrapper"
"k8s.io/kubernetes/test/e2e/framework/metrics"
"k8s.io/kubernetes/test/e2e/framework/metrics"
"k8s.io/kubernetes/test/e2e/manifest"
"k8s.io/kubernetes/test/e2e/manifest"
federationtest
"k8s.io/kubernetes/test/e2e_federation"
testutils
"k8s.io/kubernetes/test/utils"
testutils
"k8s.io/kubernetes/test/utils"
)
)
...
...
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