[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:
@@ -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
|
||||
Reference in New Issue
Block a user