Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 20 for onPodConditions (0.18 sec)

  1. staging/src/k8s.io/api/batch/v1/generated.proto

      // Defaults to True.
      optional string status = 2;
    }
    
    // PodFailurePolicyRule describes how a pod failure is handled when the requirements are met.
    // One of onExitCodes and onPodConditions, but not both, can be used in each rule.
    message PodFailurePolicyRule {
      // Specifies the action taken on a pod failure when the requirements are satisfied.
      // Possible values are:
      //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.29.0/batch.v1.CronJob.yaml

            rules:
            - action: actionValue
              onExitCodes:
                containerName: containerNameValue
                operator: operatorValue
                values:
                - 3
              onPodConditions:
              - status: statusValue
                type: typeValue
          podReplacementPolicy: podReplacementPolicyValue
          selector:
            matchExpressions:
            - key: keyValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 40.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/HEAD/batch.v1.CronJob.yaml

            rules:
            - action: actionValue
              onExitCodes:
                containerName: containerNameValue
                operator: operatorValue
                values:
                - 3
              onPodConditions:
              - status: statusValue
                type: typeValue
          podReplacementPolicy: podReplacementPolicyValue
          selector:
            matchExpressions:
            - key: keyValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 41.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/v1.30.0/batch.v1.Job.yaml

      parallelism: 1
      podFailurePolicy:
        rules:
        - action: actionValue
          onExitCodes:
            containerName: containerNameValue
            operator: operatorValue
            values:
            - 3
          onPodConditions:
          - status: statusValue
            type: typeValue
      podReplacementPolicy: podReplacementPolicyValue
      selector:
        matchExpressions:
        - key: keyValue
          operator: operatorValue
          values:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 35.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/v1.29.0/batch.v1beta1.CronJob.yaml

            rules:
            - action: actionValue
              onExitCodes:
                containerName: containerNameValue
                operator: operatorValue
                values:
                - 3
              onPodConditions:
              - status: statusValue
                type: typeValue
          podReplacementPolicy: podReplacementPolicyValue
          selector:
            matchExpressions:
            - key: keyValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 40.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/v1.30.0/batch.v1.CronJob.yaml

            rules:
            - action: actionValue
              onExitCodes:
                containerName: containerNameValue
                operator: operatorValue
                values:
                - 3
              onPodConditions:
              - status: statusValue
                type: typeValue
          podReplacementPolicy: podReplacementPolicyValue
          selector:
            matchExpressions:
            - key: keyValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 41.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/v1.30.0/batch.v1beta1.CronJob.yaml

            rules:
            - action: actionValue
              onExitCodes:
                containerName: containerNameValue
                operator: operatorValue
                values:
                - 3
              onPodConditions:
              - status: statusValue
                type: typeValue
          podReplacementPolicy: podReplacementPolicyValue
          selector:
            matchExpressions:
            - key: keyValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 41.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/testdata/HEAD/batch.v1beta1.CronJob.yaml

            rules:
            - action: actionValue
              onExitCodes:
                containerName: containerNameValue
                operator: operatorValue
                values:
                - 3
              onPodConditions:
              - status: statusValue
                type: typeValue
          podReplacementPolicy: podReplacementPolicyValue
          selector:
            matchExpressions:
            - key: keyValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 41.3K bytes
    - Viewed (0)
  9. pkg/apis/batch/types.go

    	// Defaults to True.
    	Status api.ConditionStatus
    }
    
    // PodFailurePolicyRule describes how a pod failure is handled when the requirements are met.
    // One of OnExitCodes and onPodConditions, but not both, can be used in each rule.
    type PodFailurePolicyRule struct {
    	// Specifies the action taken on a pod failure when the requirements are satisfied.
    	// Possible values are:
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  10. pkg/controller/job/indexed_job_utils_test.go

    			job: batch.Job{
    				Spec: batch.JobSpec{
    					PodFailurePolicy: &batch.PodFailurePolicy{
    						Rules: []batch.PodFailurePolicyRule{
    							{
    								Action: batch.PodFailurePolicyActionIgnore,
    								OnPodConditions: []batch.PodFailurePolicyOnPodConditionsPattern{
    									{
    										Type:   v1.DisruptionTarget,
    										Status: v1.ConditionTrue,
    									},
    								},
    							},
    						},
    					},
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 27.9K bytes
    - Viewed (0)
Back to top