diff --git a/content/zh/examples/apllication/job/cronjob.yaml b/content/zh/examples/apllication/job/cronjob.yaml deleted file mode 100644 index c9d3893027..0000000000 --- a/content/zh/examples/apllication/job/cronjob.yaml +++ /dev/null @@ -1,18 +0,0 @@ -apiVersion: batch/v1beta1 -kind: CronJob -metadata: - name: hello -spec: - schedule: "*/1 * * * *" - jobTemplate: - spec: - template: - spec: - containers: - - name: hello - image: busybox - args: - - /bin/sh - - -c - - date; echo Hello from the Kubernetes cluster - restartPolicy: OnFailure