Merge pull request #98503 from chymy/kctl-i18nt-0128

add i18n.T in waitExample
This commit is contained in:
Kubernetes Prow Robot 2021-02-01 10:27:49 -08:00 committed by GitHub
commit fd515b22cf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -58,7 +58,7 @@ var (
A successful message will be printed to stdout indicating when the specified A successful message will be printed to stdout indicating when the specified
condition has been met. One can use -o option to change to output destination.`)) condition has been met. One can use -o option to change to output destination.`))
waitExample = templates.Examples(` waitExample = templates.Examples(i18n.T(`
# Wait for the pod "busybox1" to contain the status condition of type "Ready". # Wait for the pod "busybox1" to contain the status condition of type "Ready".
kubectl wait --for=condition=Ready pod/busybox1 kubectl wait --for=condition=Ready pod/busybox1
@ -67,7 +67,7 @@ var (
# Wait for the pod "busybox1" to be deleted, with a timeout of 60s, after having issued the "delete" command. # Wait for the pod "busybox1" to be deleted, with a timeout of 60s, after having issued the "delete" command.
kubectl delete pod/busybox1 kubectl delete pod/busybox1
kubectl wait --for=delete pod/busybox1 --timeout=60s`) kubectl wait --for=delete pod/busybox1 --timeout=60s`))
) )
// errNoMatchingResources is returned when there is no resources matching a query. // errNoMatchingResources is returned when there is no resources matching a query.