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
5e93ed27
Unverified
Commit
5e93ed27
authored
Jul 20, 2017
by
Michail Kargakis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rename test dir to allude sig-apps ownership
Signed-off-by:
Michail Kargakis
<
mkargaki@redhat.com
>
parent
f26b2956
Hide whitespace changes
Inline
Side-by-side
Showing
18 changed files
with
18 additions
and
18 deletions
+18
-18
.golint_failures
hack/.golint_failures
+1
-1
BUILD
test/e2e/BUILD
+2
-2
BUILD
test/e2e/apimachinery/BUILD
+1
-1
etcd_failure.go
test/e2e/apimachinery/etcd_failure.go
+2
-2
BUILD
test/e2e/apps/BUILD
+0
-0
OWNERS
test/e2e/apps/OWNERS
+0
-0
cronjob.go
test/e2e/apps/cronjob.go
+1
-1
daemon_restart.go
test/e2e/apps/daemon_restart.go
+1
-1
daemon_set.go
test/e2e/apps/daemon_set.go
+1
-1
deployment.go
test/e2e/apps/deployment.go
+1
-1
disruption.go
test/e2e/apps/disruption.go
+1
-1
framework.go
test/e2e/apps/framework.go
+1
-1
job.go
test/e2e/apps/job.go
+1
-1
rc.go
test/e2e/apps/rc.go
+1
-1
replica_set.go
test/e2e/apps/replica_set.go
+1
-1
statefulset.go
test/e2e/apps/statefulset.go
+1
-1
types.go
test/e2e/apps/types.go
+1
-1
e2e_test.go
test/e2e/e2e_test.go
+1
-1
No files found.
hack/.golint_failures
View file @
5e93ed27
...
...
@@ -801,6 +801,7 @@ staging/src/k8s.io/sample-apiserver/pkg/registry/wardle/fischer
staging/src/k8s.io/sample-apiserver/pkg/registry/wardle/flunder
test/e2e
test/e2e/apimachinery
test/e2e/apps
test/e2e/autoscaling
test/e2e/chaosmonkey
test/e2e/common
...
...
@@ -817,7 +818,6 @@ test/e2e/scheduling
test/e2e/storage
test/e2e/upgrades
test/e2e/upgrades/apps
test/e2e/workload
test/e2e_federation
test/e2e_federation/framework
test/e2e_federation/upgrades
...
...
test/e2e/BUILD
View file @
5e93ed27
...
...
@@ -19,6 +19,7 @@ go_test(
tags = ["automanaged"],
deps = [
"//test/e2e/apimachinery:go_default_library",
"//test/e2e/apps:go_default_library",
"//test/e2e/autoscaling:go_default_library",
"//test/e2e/framework:go_default_library",
"//test/e2e/instrumentation/logging:go_default_library",
...
...
@@ -30,7 +31,6 @@ go_test(
"//test/e2e/scalability:go_default_library",
"//test/e2e/scheduling:go_default_library",
"//test/e2e/storage:go_default_library",
"//test/e2e/workload:go_default_library",
"//test/utils:go_default_library",
"//vendor/github.com/onsi/ginkgo:go_default_library",
"//vendor/github.com/onsi/gomega:go_default_library",
...
...
@@ -173,6 +173,7 @@ filegroup(
srcs = [
":package-srcs",
"//test/e2e/apimachinery:all-srcs",
"//test/e2e/apps:all-srcs",
"//test/e2e/autoscaling:all-srcs",
"//test/e2e/chaosmonkey:all-srcs",
"//test/e2e/common:all-srcs",
...
...
@@ -189,7 +190,6 @@ filegroup(
"//test/e2e/storage:all-srcs",
"//test/e2e/testing-manifests:all-srcs",
"//test/e2e/upgrades:all-srcs",
"//test/e2e/workload:all-srcs",
],
tags = ["automanaged"],
)
test/e2e/apimachinery/BUILD
View file @
5e93ed27
...
...
@@ -25,9 +25,9 @@ go_library(
"//pkg/controller:go_default_library",
"//pkg/printers:go_default_library",
"//pkg/util/version:go_default_library",
"//test/e2e/apps:go_default_library",
"//test/e2e/framework:go_default_library",
"//test/e2e/metrics:go_default_library",
"//test/e2e/workload:go_default_library",
"//test/utils:go_default_library",
"//vendor/github.com/onsi/ginkgo:go_default_library",
"//vendor/github.com/onsi/gomega:go_default_library",
...
...
test/e2e/apimachinery/etcd_failure.go
View file @
5e93ed27
...
...
@@ -23,8 +23,8 @@ import (
"k8s.io/apimachinery/pkg/labels"
"k8s.io/apimachinery/pkg/util/wait"
podutil
"k8s.io/kubernetes/pkg/api/v1/pod"
"k8s.io/kubernetes/test/e2e/apps"
"k8s.io/kubernetes/test/e2e/framework"
"k8s.io/kubernetes/test/e2e/workload"
testutils
"k8s.io/kubernetes/test/utils"
.
"github.com/onsi/ginkgo"
...
...
@@ -74,7 +74,7 @@ func etcdFailTest(f *framework.Framework, failCommand, fixCommand string) {
checkExistingRCRecovers
(
f
)
workload
.
TestReplicationControllerServeImageOrFail
(
f
,
"basic"
,
framework
.
ServeHostnameImage
)
apps
.
TestReplicationControllerServeImageOrFail
(
f
,
"basic"
,
framework
.
ServeHostnameImage
)
}
// For this duration, etcd will be failed by executing a failCommand on the master.
...
...
test/e2e/
workload
/BUILD
→
test/e2e/
apps
/BUILD
View file @
5e93ed27
File moved
test/e2e/
workload
/OWNERS
→
test/e2e/
apps
/OWNERS
View file @
5e93ed27
File moved
test/e2e/
workload
/cronjob.go
→
test/e2e/
apps
/cronjob.go
View file @
5e93ed27
...
...
@@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
limitations under the License.
*/
package
workload
package
apps
import
(
"fmt"
...
...
test/e2e/
workload
/daemon_restart.go
→
test/e2e/
apps
/daemon_restart.go
View file @
5e93ed27
...
...
@@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
limitations under the License.
*/
package
workload
package
apps
import
(
"fmt"
...
...
test/e2e/
workload
/daemon_set.go
→
test/e2e/
apps
/daemon_set.go
View file @
5e93ed27
...
...
@@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
limitations under the License.
*/
package
workload
package
apps
import
(
"fmt"
...
...
test/e2e/
workload
/deployment.go
→
test/e2e/
apps
/deployment.go
View file @
5e93ed27
...
...
@@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
limitations under the License.
*/
package
workload
package
apps
import
(
"fmt"
...
...
test/e2e/
workload
/disruption.go
→
test/e2e/
apps
/disruption.go
View file @
5e93ed27
...
...
@@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
limitations under the License.
*/
package
workload
package
apps
import
(
"fmt"
...
...
test/e2e/
workload
/framework.go
→
test/e2e/
apps
/framework.go
View file @
5e93ed27
...
...
@@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
limitations under the License.
*/
package
workload
package
apps
import
"github.com/onsi/ginkgo"
...
...
test/e2e/
workload
/job.go
→
test/e2e/
apps
/job.go
View file @
5e93ed27
...
...
@@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
limitations under the License.
*/
package
workload
package
apps
import
(
"fmt"
...
...
test/e2e/
workload
/rc.go
→
test/e2e/
apps
/rc.go
View file @
5e93ed27
...
...
@@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
limitations under the License.
*/
package
workload
package
apps
import
(
"fmt"
...
...
test/e2e/
workload
/replica_set.go
→
test/e2e/
apps
/replica_set.go
View file @
5e93ed27
...
...
@@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
limitations under the License.
*/
package
workload
package
apps
import
(
"fmt"
...
...
test/e2e/
workload
/statefulset.go
→
test/e2e/
apps
/statefulset.go
View file @
5e93ed27
...
...
@@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
limitations under the License.
*/
package
workload
package
apps
import
(
"fmt"
...
...
test/e2e/
workload
/types.go
→
test/e2e/
apps
/types.go
View file @
5e93ed27
...
...
@@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
limitations under the License.
*/
package
workload
package
apps
import
(
"k8s.io/apimachinery/pkg/runtime/schema"
...
...
test/e2e/e2e_test.go
View file @
5e93ed27
...
...
@@ -20,6 +20,7 @@ import (
"testing"
_
"k8s.io/kubernetes/test/e2e/apimachinery"
_
"k8s.io/kubernetes/test/e2e/apps"
_
"k8s.io/kubernetes/test/e2e/autoscaling"
"k8s.io/kubernetes/test/e2e/framework"
_
"k8s.io/kubernetes/test/e2e/instrumentation/logging"
...
...
@@ -30,7 +31,6 @@ import (
_
"k8s.io/kubernetes/test/e2e/scalability"
_
"k8s.io/kubernetes/test/e2e/scheduling"
_
"k8s.io/kubernetes/test/e2e/storage"
_
"k8s.io/kubernetes/test/e2e/workload"
)
func
init
()
{
...
...
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