Skip to content

Commit ba31379

Browse files
committed
Fix influxdb e2e test failure.
In scalability testing influxdb was recently disabled, but we still trying to execute corresponidng test, as a result it fails all the time. Skip test if influxdb is disabled.
1 parent d215d4b commit ba31379

File tree

4 files changed

+20
-0
lines changed

4 files changed

+20
-0
lines changed

hack/ginkgo-e2e.sh

+1
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,7 @@ export PATH=$(dirname "${e2e_test}"):"${PATH}"
148148
--network="${KUBE_GCE_NETWORK:-${KUBE_GKE_NETWORK:-e2e}}" \
149149
--node-tag="${NODE_TAG:-}" \
150150
--master-tag="${MASTER_TAG:-}" \
151+
--cluster-monitoring-mode="${KUBE_ENABLE_CLUSTER_MONITORING:-influxdb}" \
151152
${KUBE_CONTAINER_RUNTIME:+"--container-runtime=${KUBE_CONTAINER_RUNTIME}"} \
152153
${MASTER_OS_DISTRIBUTION:+"--master-os-distro=${MASTER_OS_DISTRIBUTION}"} \
153154
${NODE_OS_DISTRIBUTION:+"--node-os-distro=${NODE_OS_DISTRIBUTION}"} \

test/e2e/framework/test_context.go

+3
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,8 @@ type TestContextType struct {
102102
FeatureGates string
103103
// Node e2e specific test context
104104
NodeTestContextType
105+
// Monitoring solution that is used in current cluster.
106+
ClusterMonitoringMode string
105107

106108
// Indicates what path the kubernetes-anywhere is installed on
107109
KubernetesAnywherePath string
@@ -221,6 +223,7 @@ func RegisterClusterFlags() {
221223
flag.StringVar(&TestContext.Prefix, "prefix", "e2e", "A prefix to be added to cloud resources created during testing.")
222224
flag.StringVar(&TestContext.MasterOSDistro, "master-os-distro", "debian", "The OS distribution of cluster master (debian, trusty, or coreos).")
223225
flag.StringVar(&TestContext.NodeOSDistro, "node-os-distro", "debian", "The OS distribution of cluster VM instances (debian, trusty, or coreos).")
226+
flag.StringVar(&TestContext.ClusterMonitoringMode, "cluster-monitoring-mode", "influxdb", "The monitoring solution that is used in the cluster.")
224227

225228
// TODO: Flags per provider? Rename gce-project/gce-zone?
226229
cloudConfig := &TestContext.CloudConfig

test/e2e/framework/util.go

+15
Original file line numberDiff line numberDiff line change
@@ -331,6 +331,12 @@ func SkipUnlessProviderIs(supportedProviders ...string) {
331331
}
332332
}
333333

334+
func SkipUnlessClusterMonitoringModeIs(supportedMonitoring ...string) {
335+
if !ClusterMonitoringModeIs(supportedMonitoring...) {
336+
Skipf("Only next monitoring modes are supported %v (not %s)", supportedMonitoring, TestContext.ClusterMonitoringMode)
337+
}
338+
}
339+
334340
func SkipUnlessMasterOSDistroIs(supportedMasterOsDistros ...string) {
335341
if !MasterOSDistroIs(supportedMasterOsDistros...) {
336342
Skipf("Only supported for master OS distro %v (not %s)", supportedMasterOsDistros, TestContext.MasterOSDistro)
@@ -378,6 +384,15 @@ func ProviderIs(providers ...string) bool {
378384
return false
379385
}
380386

387+
func ClusterMonitoringModeIs(monitoringModes ...string) bool {
388+
for _, mode := range monitoringModes {
389+
if strings.ToLower(mode) == strings.ToLower(TestContext.ClusterMonitoringMode) {
390+
return true
391+
}
392+
}
393+
return false
394+
}
395+
381396
func MasterOSDistroIs(supportedMasterOsDistros ...string) bool {
382397
for _, distro := range supportedMasterOsDistros {
383398
if strings.ToLower(distro) == strings.ToLower(TestContext.MasterOSDistro) {

test/e2e/instrumentation/monitoring/influxdb.go

+1
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ var _ = instrumentation.SIGDescribe("Monitoring", func() {
3939

4040
BeforeEach(func() {
4141
framework.SkipUnlessProviderIs("gce")
42+
framework.SkipUnlessClusterMonitoringModeIs("influxdb")
4243
})
4344

4445
It("should verify monitoring pods and all cluster nodes are available on influxdb using heapster.", func() {

0 commit comments

Comments
 (0)