Skip to content

Commit

Permalink
fix(e2e): re-enable prometheus test
Browse files Browse the repository at this point in the history
  • Loading branch information
ecordell committed Aug 13, 2018
1 parent 393c499 commit 42ade77
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion test/e2e/installplan_e2e_test.go
Original file line number Diff line number Diff line change
@@ -23,7 +23,7 @@ import (

const (
etcdVersion = "3.2.13"
prometheusVersion = "v1.7.0"
prometheusVersion = "v2.3.2"
expectedEtcdNodes = 3
expectedPrometheusSize = 3
ocsConfigMap = "ocs"
6 changes: 3 additions & 3 deletions test/e2e/ocs_e2e_test.go
Original file line number Diff line number Diff line change
@@ -305,13 +305,13 @@ func TestInstallPrometheusOCS(t *testing.T) {
"labels": map[string]interface{}{"prometheus": "test-prometheus"},
},
"spec": map[string]interface{}{
"replicas": expectedPrometheusSize,
"version": prometheusVersion,
"replicas": expectedPrometheusSize,
"version": prometheusVersion,
"securityContext": struct{}{},
},
}

t.Run("test prometheus object creation", func(t *testing.T) {
t.Skip("skipping prometheus object verification - currently broken")
err = c.CreateCustomResource(&unstructured.Unstructured{Object: prometheus})
require.NoError(t, err)

0 comments on commit 42ade77

Please sign in to comment.