mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-29 22:46:12 +00:00
Add aws to some e2e tests
This commit is contained in:
parent
2f195578cc
commit
993071dd64
@ -32,7 +32,7 @@ import (
|
||||
// TestKubeletSendsEvent checks that kubelets and scheduler send events about pods scheduling and running.
|
||||
func TestKubeletSendsEvent(c *client.Client) bool {
|
||||
provider := testContext.provider
|
||||
if len(provider) > 0 && provider != "gce" && provider != "gke" {
|
||||
if len(provider) > 0 && provider != "gce" && provider != "gke" && provider != "aws" {
|
||||
glog.Infof("skipping TestKubeletSendsEvent on cloud provider %s", provider)
|
||||
return true
|
||||
}
|
||||
|
@ -29,8 +29,8 @@ import (
|
||||
// with the TestBasicImage test. This test is only supported
|
||||
// for the providers GCE and GKE.
|
||||
func TestPrivate(c *client.Client) bool {
|
||||
if testContext.provider != "gce" && testContext.provider != "gke" {
|
||||
glog.Infof("Skipping test private which is only supported for providers gce and gke (not %s)", testContext.provider)
|
||||
if testContext.provider != "gce" && testContext.provider != "gke" && testContext.provider != "aws" {
|
||||
glog.Infof("Skipping test private which is only supported for providers gce, gke and aws (not %s)", testContext.provider)
|
||||
return true
|
||||
}
|
||||
glog.Info("Calling out to TestBasic")
|
||||
|
Loading…
Reference in New Issue
Block a user