Fix non-ascii characters in test/e2e_node and test/network.

Signed-off-by: Sakura <longfei.shang@daocloud.io>
This commit is contained in:
Sakura 2020-02-08 17:13:41 +08:00
parent 9f6f608816
commit 44bf3475ea
No known key found for this signature in database
GPG Key ID: 07F5F462F68548F1
2 changed files with 2 additions and 2 deletions

View File

@ -710,7 +710,7 @@ var _ = SIGDescribe("Services", func() {
/*
Release : v1.9
Testname: Kubernetes Service
Description: By default when a kubernetes cluster is running there MUST be a kubernetes service running in the cluster.
Description: By default when a kubernetes cluster is running there MUST be a 'kubernetes' service running in the cluster.
*/
framework.ConformanceIt("should provide secure master service ", func() {
_, err := cs.CoreV1().Services(metav1.NamespaceDefault).Get("kubernetes", metav1.GetOptions{})

View File

@ -116,7 +116,7 @@ var _ = framework.KubeDescribe("StartupProbe [Serial] [Disruptive]", func() {
/*
Release : v1.16
Testname: Pod liveness probe fails after startup success
Description: A Pod is created with failing liveness probe and delayed startup probe that uses exec command to cat /temp/health file. The Container is started by creating /tmp/startup after 10 seconds, triggering liveness probe to fail. The Pod MUST now be killed and restarted incrementing restart count to 1.
Description: A Pod is created with failing liveness probe and delayed startup probe that uses 'exec' command to cat /temp/health file. The Container is started by creating /tmp/startup after 10 seconds, triggering liveness probe to fail. The Pod MUST now be killed and restarted incrementing restart count to 1.
*/
ginkgo.It("should be restarted by liveness probe after startup probe enables it", func() {
cmd := []string{"/bin/sh", "-c", "sleep 10; echo ok >/tmp/startup; sleep 600"}