Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Popular Words: %27 [xss] テスト test

Results 1 - 2 of 2 for host:kubernetes.io (0.02 sec)

Similar results are displayed.

  1. kubectl create cronjob | Kubernetes

    Synopsis Create a cron job with the specified name. kubectl create cronjob NAME --image=image --schedule='0/5 * * * ?' -- [COMMAND] [args...] [flags] Examples # Create a cron job kubectl create cronjob my-job --image=busybox --schedule="*/1 * * * *" # Create a cron job with a command kubectl create cronjob my-job --image=busybox --schedule="*/1 * * * *" -- date Options --allow-missing-template-keys     Default: true If true, ignore any errors in templates when a field or map key is missing in the template.
    kubernetes.io/docs/reference/kubectl/generated/kubectl_create/kubectl_create_cronjob/
    Registered: Fri Nov 15 07:27:20 UTC 2024
    - 436.4K bytes
    - Viewed (0)
  2. kubectl create job | Kubernetes

    Synopsis Create a job with the specified name. kubectl create job NAME --image=image [--from=cronjob/name] -- [COMMAND] [args...] Examples # Create a job kubectl create job my-job --image=busybox # Create a job with a command kubectl create job my-job --image=busybox -- date # Create a job from a cron job named "a-cronjob" kubectl create job test-job --from=cronjob/a-cronjob Options --allow-missing-template-keys     Default: true If true, ignore any errors in templates when a field or map key is missing in the template.
    kubernetes.io/docs/reference/kubectl/generated/kubectl_create/kubectl_create_job/
    Registered: Fri Nov 15 07:26:19 UTC 2024
    - 436.2K bytes
    - Viewed (0)
Back to top