Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for PodFailurePolicyRule (0.97 sec)

  1. pkg/controller/job/job_controller_test.go

    				"foo": "bar",
    			},
    		},
    		Spec: v1.PodSpec{
    			Containers: []v1.Container{
    				{Image: "foo/bar"},
    			},
    		},
    	}
    
    	onExitCodeRules := []batch.PodFailurePolicyRule{
    		{
    			Action: batch.PodFailurePolicyActionIgnore,
    			OnExitCodes: &batch.PodFailurePolicyOnExitCodesRequirement{
    				Operator: batch.PodFailurePolicyOnExitCodesOpIn,
    				Values:   []int32{1, 2, 3},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. staging/src/k8s.io/api/batch/v1/types.go

    	// Defaults to True.
    	Status corev1.ConditionStatus `json:"status" protobuf:"bytes,2,req,name=status"`
    }
    
    // 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 Jun 05 18:37:07 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/batch/v1/types_swagger_doc_generated.go

    func (PodFailurePolicyOnPodConditionsPattern) SwaggerDoc() map[string]string {
    	return map_PodFailurePolicyOnPodConditionsPattern
    }
    
    var map_PodFailurePolicyRule = map[string]string{
    	"":                "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.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__batch__v1_openapi.json

              }
            },
            "required": [
              "type",
              "status"
            ],
            "type": "object"
          },
          "io.k8s.api.batch.v1.PodFailurePolicyRule": {
            "description": "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.",
            "properties": {
              "action": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  7. pkg/generated/openapi/zz_generated.openapi.go

    										Default: map[string]interface{}{},
    										Ref:     ref("k8s.io/api/batch/v1.PodFailurePolicyRule"),
    									},
    								},
    							},
    						},
    					},
    				},
    				Required: []string{"rules"},
    			},
    		},
    		Dependencies: []string{
    			"k8s.io/api/batch/v1.PodFailurePolicyRule"},
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  8. api/openapi-spec/swagger.json

            }
          },
          "required": [
            "type",
            "status"
          ],
          "type": "object"
        },
        "io.k8s.api.batch.v1.PodFailurePolicyRule": {
          "description": "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.",
          "properties": {
            "action": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
Back to top