Merge pull request #106299 from SergeyKanzhelev/PodReadinessGateNodeConformance

PodReadinessGate is stable feature and test runs all green
This commit is contained in:
Kubernetes Prow Robot 2021-11-10 11:51:46 -08:00 committed by GitHub
commit dac695f91f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -22,12 +22,13 @@ import (
"encoding/json"
"fmt"
"io"
"k8s.io/client-go/util/retry"
"runtime/debug"
"strconv"
"strings"
"time"
"k8s.io/client-go/util/retry"
"golang.org/x/net/websocket"
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 [NodeFeature:PodReadinessGate]", func() {
ginkgo.It("should support pod readiness gates [NodeConformance]", func() {
podName := "pod-ready"
readinessGate1 := "k8s.io/test-condition1"
readinessGate2 := "k8s.io/test-condition2"