Skip to content

Commit e274a14

Browse files
Wait for the correct object (we weren't waiting for a stateful set)
Prometheus moved to a statefulset but we didn't notice this wait condition was no longer valid. Also bump a few timeouts.
1 parent 4f709b4 commit e274a14

File tree

3 files changed

+10
-7
lines changed

3 files changed

+10
-7
lines changed

test/extended/prometheus/prometheus.go

+6-3
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ import (
1313
dto "github.com/prometheus/client_model/go"
1414
"github.com/prometheus/common/expfmt"
1515

16+
apps "k8s.io/api/apps/v1beta1"
1617
"k8s.io/api/core/v1"
17-
extensions "k8s.io/api/extensions/v1beta1"
1818
kapierrs "k8s.io/apimachinery/pkg/api/errors"
1919
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
2020
"k8s.io/apimachinery/pkg/watch"
@@ -26,6 +26,8 @@ import (
2626
exutil "github.com/openshift/origin/test/extended/util"
2727
)
2828

29+
const waitForPrometheusStartSeconds = 240
30+
2931
var _ = g.Describe("[Feature:Prometheus][Conformance] Prometheus", func() {
3032
defer g.GinkgoRecover()
3133
var (
@@ -49,7 +51,7 @@ var _ = g.Describe("[Feature:Prometheus][Conformance] Prometheus", func() {
4951
g.By("checking the unsecured metrics path")
5052
success := false
5153
var metrics map[string]*dto.MetricFamily
52-
for i := 0; i < 120; i++ {
54+
for i := 0; i < waitForPrometheusStartSeconds; i++ {
5355
results, err := getInsecureURLViaPod(ns, execPodName, fmt.Sprintf("https://%s:%d/metrics", host, statsPort))
5456
if err != nil {
5557
e2e.Logf("unable to get unsecured metrics: %v", err)
@@ -315,7 +317,8 @@ func bringUpPrometheusFromTemplate(oc *exutil.CLI) (ns, host, bearerToken string
315317
if err != nil {
316318
fmt.Fprintf(g.GinkgoWriter, "test continuing, but create on the prometheus template resulted in: %#v", err)
317319
}
318-
e2e.WaitForDeploymentComplete(oc.AdminKubeClient(), &extensions.Deployment{ObjectMeta: metav1.ObjectMeta{Name: "prometheus", Namespace: "kube-system"}})
320+
tester := e2e.NewStatefulSetTester(oc.AdminKubeClient())
321+
tester.WaitForRunningAndReady(1, &apps.StatefulSet{ObjectMeta: metav1.ObjectMeta{Name: "prometheus", Namespace: "kube-system"}})
319322
}
320323

321324
waitForServiceAccountInNamespace(oc.AdminKubeClient(), "kube-system", "prometheus", 2*time.Minute)

test/extended/prometheus/prometheus_builds.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ var _ = g.Describe("[Feature:Prometheus][Feature:Builds] Prometheus", func() {
5050
// allow for some retry, a la prometheus.go and its initial hitting of the metrics endpoint after
5151
// instantiating prometheus tempalte
5252
var err error
53-
for i := 0; i < 30; i++ {
53+
for i := 0; i < waitForPrometheusStartSeconds; i++ {
5454
err = expectURLStatusCodeExec(ns, execPodName, fmt.Sprintf("https://%s:%d", host, statsPort), 403)
5555
if err == nil {
5656
break
@@ -119,9 +119,9 @@ type metricTest struct {
119119
}
120120

121121
func runQueries(metricTests map[string][]metricTest, oc *exutil.CLI) {
122-
// expect all correct metrics within 60 seconds
122+
// expect all correct metrics within a reasonable time period
123123
errsMap := map[string]error{}
124-
for i := 0; i < 120; i++ {
124+
for i := 0; i < waitForPrometheusStartSeconds; i++ {
125125
for query, tcs := range metricTests {
126126
//TODO when the http/query apis discussed at https://github.com/prometheus/client_golang#client-for-the-prometheus-http-api
127127
// and introduced at https://github.com/prometheus/client_golang/blob/master/api/prometheus/v1/api.go are vendored into

test/extended/router/metrics.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ var _ = g.Describe("[Conformance][Area:Networking][Feature:Router] openshift rou
109109
times := 10
110110
var results string
111111
defer func() { e2e.Logf("received metrics:\n%s", results) }()
112-
err = wait.PollImmediate(2*time.Second, 120*time.Second, func() (bool, error) {
112+
err = wait.PollImmediate(2*time.Second, 240*time.Second, func() (bool, error) {
113113
results, err = getAuthenticatedURLViaPod(ns, execPodName, fmt.Sprintf("http://%s:%d/metrics", host, statsPort), username, password)
114114
o.Expect(err).NotTo(o.HaveOccurred())
115115

0 commit comments

Comments
 (0)