91 lines
4.7 KiB
Go
91 lines
4.7 KiB
Go
/*
|
|
Copyright The Kubernetes Authors.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
// Code generated by applyconfiguration-gen. DO NOT EDIT.
|
|
|
|
package v1
|
|
|
|
import (
|
|
batchv1 "k8s.io/api/batch/v1"
|
|
)
|
|
|
|
// PodFailurePolicyOnExitCodesRequirementApplyConfiguration represents a declarative configuration of the PodFailurePolicyOnExitCodesRequirement type for use
|
|
// with apply.
|
|
//
|
|
// PodFailurePolicyOnExitCodesRequirement describes the requirement for handling
|
|
// a failed pod based on its container exit codes. In particular, it lookups the
|
|
// .state.terminated.exitCode for each app container and init container status,
|
|
// represented by the .status.containerStatuses and .status.initContainerStatuses
|
|
// fields in the Pod status, respectively. Containers completed with success
|
|
// (exit code 0) are excluded from the requirement check.
|
|
type PodFailurePolicyOnExitCodesRequirementApplyConfiguration struct {
|
|
// Restricts the check for exit codes to the container with the
|
|
// specified name. When null, the rule applies to all containers.
|
|
// When specified, it should match one the container or initContainer
|
|
// names in the pod template.
|
|
ContainerName *string `json:"containerName,omitempty"`
|
|
// Represents the relationship between the container exit code(s) and the
|
|
// specified values. Containers completed with success (exit code 0) are
|
|
// excluded from the requirement check. Possible values are:
|
|
//
|
|
// - In: the requirement is satisfied if at least one container exit code
|
|
// (might be multiple if there are multiple containers not restricted
|
|
// by the 'containerName' field) is in the set of specified values.
|
|
// - NotIn: the requirement is satisfied if at least one container exit code
|
|
// (might be multiple if there are multiple containers not restricted
|
|
// by the 'containerName' field) is not in the set of specified values.
|
|
// Additional values are considered to be added in the future. Clients should
|
|
// react to an unknown operator by assuming the requirement is not satisfied.
|
|
Operator *batchv1.PodFailurePolicyOnExitCodesOperator `json:"operator,omitempty"`
|
|
// Specifies the set of values. Each returned container exit code (might be
|
|
// multiple in case of multiple containers) is checked against this set of
|
|
// values with respect to the operator. The list of values must be ordered
|
|
// and must not contain duplicates. Value '0' cannot be used for the In operator.
|
|
// At least one element is required. At most 255 elements are allowed.
|
|
Values []int32 `json:"values,omitempty"`
|
|
}
|
|
|
|
// PodFailurePolicyOnExitCodesRequirementApplyConfiguration constructs a declarative configuration of the PodFailurePolicyOnExitCodesRequirement type for use with
|
|
// apply.
|
|
func PodFailurePolicyOnExitCodesRequirement() *PodFailurePolicyOnExitCodesRequirementApplyConfiguration {
|
|
return &PodFailurePolicyOnExitCodesRequirementApplyConfiguration{}
|
|
}
|
|
|
|
// WithContainerName sets the ContainerName field in the declarative configuration to the given value
|
|
// and returns the receiver, so that objects can be built by chaining "With" function invocations.
|
|
// If called multiple times, the ContainerName field is set to the value of the last call.
|
|
func (b *PodFailurePolicyOnExitCodesRequirementApplyConfiguration) WithContainerName(value string) *PodFailurePolicyOnExitCodesRequirementApplyConfiguration {
|
|
b.ContainerName = &value
|
|
return b
|
|
}
|
|
|
|
// WithOperator sets the Operator field in the declarative configuration to the given value
|
|
// and returns the receiver, so that objects can be built by chaining "With" function invocations.
|
|
// If called multiple times, the Operator field is set to the value of the last call.
|
|
func (b *PodFailurePolicyOnExitCodesRequirementApplyConfiguration) WithOperator(value batchv1.PodFailurePolicyOnExitCodesOperator) *PodFailurePolicyOnExitCodesRequirementApplyConfiguration {
|
|
b.Operator = &value
|
|
return b
|
|
}
|
|
|
|
// WithValues adds the given value to the Values field in the declarative configuration
|
|
// and returns the receiver, so that objects can be build by chaining "With" function invocations.
|
|
// If called multiple times, values provided by each call will be appended to the Values field.
|
|
func (b *PodFailurePolicyOnExitCodesRequirementApplyConfiguration) WithValues(values ...int32) *PodFailurePolicyOnExitCodesRequirementApplyConfiguration {
|
|
for i := range values {
|
|
b.Values = append(b.Values, values[i])
|
|
}
|
|
return b
|
|
}
|