You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: test/e2e/kubectl/kubectl.go
+65Lines changed: 65 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -853,6 +853,71 @@ metadata:
853
853
})
854
854
})
855
855
856
+
ginkgo.Describe("Kubectl diff", func() {
857
+
/*
858
+
Release : v1.18
859
+
Testname: Kubectl, diff Deployment
860
+
Description: Create a Deployment with httpd image. Declare the same Deployment with a different image, busybox. Diff of live Deployment with declared Deployment MUST include the difference between live and declared image.
861
+
*/
862
+
ginkgo.It("should find diff in Deployment", func() {
Description: The command 'kubectl run' must create a pod with the specified image name. After, the command 'kubectl replace --dry-run=server' should update the Pod with the new image name and server-side dry-run enabled. The image name must not change.
892
+
*/
893
+
ginkgo.It("should dry-run update the Pod", func() {
0 commit comments