Skip to content

Commit

Permalink
Use omitempty for optional fields in Job Pod Failure Policy
Browse files Browse the repository at this point in the history
Kubernetes-commit: 111387b1fa7843e9c4aa33c07c6b1d30514934d8
  • Loading branch information
mimowo authored and k8s-publishing-bot committed Jul 12, 2024
1 parent 448db12 commit a63486c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions batch/v1/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ type PodFailurePolicyOnExitCodesRequirement struct {
// When specified, it should match one the container or initContainer
// names in the pod template.
// +optional
ContainerName *string `json:"containerName" protobuf:"bytes,1,opt,name=containerName"`
ContainerName *string `json:"containerName,omitempty" protobuf:"bytes,1,opt,name=containerName"`

// Represents the relationship between the container exit code(s) and the
// specified values. Containers completed with success (exit code 0) are
Expand Down Expand Up @@ -231,14 +231,14 @@ type PodFailurePolicyRule struct {

// Represents the requirement on the container exit codes.
// +optional
OnExitCodes *PodFailurePolicyOnExitCodesRequirement `json:"onExitCodes" protobuf:"bytes,2,opt,name=onExitCodes"`
OnExitCodes *PodFailurePolicyOnExitCodesRequirement `json:"onExitCodes,omitempty" protobuf:"bytes,2,opt,name=onExitCodes"`

// Represents the requirement on the pod conditions. The requirement is represented
// as a list of pod condition patterns. The requirement is satisfied if at
// least one pattern matches an actual pod condition. At most 20 elements are allowed.
// +listType=atomic
// +optional
OnPodConditions []PodFailurePolicyOnPodConditionsPattern `json:"onPodConditions" protobuf:"bytes,3,opt,name=onPodConditions"`
OnPodConditions []PodFailurePolicyOnPodConditionsPattern `json:"onPodConditions,omitempty" protobuf:"bytes,3,opt,name=onPodConditions"`
}

// PodFailurePolicy describes how failed pods influence the backoffLimit.
Expand Down

0 comments on commit a63486c

Please sign in to comment.