[PT-BR] Update CronJob documentation page (#28979)

* Update CronJob page translation to Portuguese.

Update CronJob page to reflect the latest English version in the Brazilian
Portuguese translation.

Signed-off-by: Mauren Berti <mribeirobert@vmware.com>

* Incorporate feedback from pull request.

Signed-off-by: Mauren Berti <mribeirobert@vmware.com>
This commit is contained in:
Mauren Berti
2021-08-20 08:03:24 -04:00
committed by GitHub
parent 370b521a87
commit e4ae89a725
3 changed files with 116 additions and 23 deletions
@@ -0,0 +1,19 @@
apiVersion: batch/v1
kind: CronJob
metadata:
name: hello
spec:
schedule: "*/1 * * * *"
jobTemplate:
spec:
template:
spec:
containers:
- name: hello
image: busybox
imagePullPolicy: IfNotPresent
command:
- /bin/sh
- -c
- date; echo Hello from the Kubernetes cluster
restartPolicy: OnFailure