PodReadinessGate is stable feature and test runs all green

This commit is contained in:
Sergey Kanzhelev 2021-11-10 07:34:14 +00:00
parent e9a8bd94f7
commit fc42da8eb8

View File

@ -22,12 +22,13 @@ import (
"encoding/json" "encoding/json"
"fmt" "fmt"
"io" "io"
"k8s.io/client-go/util/retry"
"runtime/debug" "runtime/debug"
"strconv" "strconv"
"strings" "strings"
"time" "time"
"k8s.io/client-go/util/retry"
"golang.org/x/net/websocket" "golang.org/x/net/websocket"
v1 "k8s.io/api/core/v1" v1 "k8s.io/api/core/v1"
@ -771,8 +772,7 @@ var _ = SIGDescribe("Pods", func() {
} }
}) })
// TODO(freehan): label the test to be [NodeConformance] after tests are proven to be stable. ginkgo.It("should support pod readiness gates [NodeConformance]", func() {
ginkgo.It("should support pod readiness gates [NodeFeature:PodReadinessGate]", func() {
podName := "pod-ready" podName := "pod-ready"
readinessGate1 := "k8s.io/test-condition1" readinessGate1 := "k8s.io/test-condition1"
readinessGate2 := "k8s.io/test-condition2" readinessGate2 := "k8s.io/test-condition2"