@@ -472,7 +472,13 @@ var _ = framework.KubeDescribe("Pods", func() {
472
472
}, maxRetries , "Container should have service environment variables set" )
473
473
})
474
474
475
- It ("should support remote command execution over websockets [NodeConformance]" , func () {
475
+ /*
476
+ Release : v1.13
477
+ Testname: Pods, remote command execution over websocket
478
+ Description: A Pod is created. Websocket is created to retrieve exec command output from this pod.
479
+ Message retrieved form Websocket MUST match with expected exec command output.
480
+ */
481
+ framework .ConformanceIt ("should support remote command execution over websockets [NodeConformance]" , func () {
476
482
config , err := framework .LoadConfig ()
477
483
Expect (err ).NotTo (HaveOccurred (), "unable to get base config" )
478
484
@@ -548,7 +554,13 @@ var _ = framework.KubeDescribe("Pods", func() {
548
554
}, time .Minute , 10 * time .Second ).Should (BeNil ())
549
555
})
550
556
551
- It ("should support retrieving logs from the container over websockets [NodeConformance]" , func () {
557
+ /*
558
+ Release : v1.13
559
+ Testname: Pods, logs from websockets
560
+ Description: A Pod is created. Websocket is created to retrieve log of a container from this pod.
561
+ Message retrieved form Websocket MUST match with container's output.
562
+ */
563
+ framework .ConformanceIt ("should support retrieving logs from the container over websockets [NodeConformance]" , func () {
552
564
config , err := framework .LoadConfig ()
553
565
Expect (err ).NotTo (HaveOccurred (), "unable to get base config" )
554
566
0 commit comments