Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions api/openapi-spec/swagger.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion charts/kubeflow-trainer/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ type: application
dependencies:
- name: jobset
repository: oci://registry.k8s.io/jobset/charts/jobset
version: 0.9.0
version: 0.10.1
condition: jobset.install

keywords:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -713,7 +713,10 @@ spec:
items:
description: |-
FailurePolicyRule defines a FailurePolicyAction to be executed if a child job
fails due to a reason listed in OnJobFailureReasons.
fails due to a reason listed in OnJobFailureReasons and a message pattern
listed in OnJobFailureMessagePatterns. The rule must match both the job
failure reason and the job failure message. The rules are evaluated in
order and the first matching rule is executed.
properties:
action:
description: The action to take if the rule is matched.
Expand All @@ -728,13 +731,24 @@ spec:
The name is defaulted to 'failurePolicyRuleN' where N is the index of the failure policy rule.
The name must match the regular expression "^[A-Za-z]([A-Za-z0-9_,:]*[A-Za-z0-9_])?$".
type: string
onJobFailureMessagePatterns:
description: |-
The requirement on the job failure message. The requirement is satisfied
if at least one pattern (regex) matches the job failure message. An
empty list matches any job failure message.
The syntax of the regular expressions accepted is the same general
syntax used by Perl, Python, and other languages. More precisely, it is
the syntax accepted by RE2 and described at https://golang.org/s/re2syntax,
except for \C. For an overview of the syntax, see
https://pkg.go.dev/regexp/syntax.
items:
type: string
type: array
onJobFailureReasons:
description: |-
The requirement on the job failure reasons. The requirement
is satisfied if at least one reason matches the list.
The rules are evaluated in order, and the first matching
rule is executed.
An empty list applies the rule to any job failure reason.
The requirement on the job failure reasons. The requirement is satisfied
if at least one reason matches the list. An empty list matches any job
failure reason.
items:
type: string
type: array
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -713,7 +713,10 @@ spec:
items:
description: |-
FailurePolicyRule defines a FailurePolicyAction to be executed if a child job
fails due to a reason listed in OnJobFailureReasons.
fails due to a reason listed in OnJobFailureReasons and a message pattern
listed in OnJobFailureMessagePatterns. The rule must match both the job
failure reason and the job failure message. The rules are evaluated in
order and the first matching rule is executed.
properties:
action:
description: The action to take if the rule is matched.
Expand All @@ -728,13 +731,24 @@ spec:
The name is defaulted to 'failurePolicyRuleN' where N is the index of the failure policy rule.
The name must match the regular expression "^[A-Za-z]([A-Za-z0-9_,:]*[A-Za-z0-9_])?$".
type: string
onJobFailureMessagePatterns:
description: |-
The requirement on the job failure message. The requirement is satisfied
if at least one pattern (regex) matches the job failure message. An
empty list matches any job failure message.
The syntax of the regular expressions accepted is the same general
syntax used by Perl, Python, and other languages. More precisely, it is
the syntax accepted by RE2 and described at https://golang.org/s/re2syntax,
except for \C. For an overview of the syntax, see
https://pkg.go.dev/regexp/syntax.
items:
type: string
type: array
onJobFailureReasons:
description: |-
The requirement on the job failure reasons. The requirement
is satisfied if at least one reason matches the list.
The rules are evaluated in order, and the first matching
rule is executed.
An empty list applies the rule to any job failure reason.
The requirement on the job failure reasons. The requirement is satisfied
if at least one reason matches the list. An empty list matches any job
failure reason.
items:
type: string
type: array
Expand Down
22 changes: 11 additions & 11 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,21 +5,21 @@ go 1.24.0
require (
github.com/go-logr/logr v1.4.3
github.com/google/go-cmp v0.7.0
github.com/onsi/ginkgo/v2 v2.25.1
github.com/onsi/ginkgo/v2 v2.25.3
github.com/onsi/gomega v1.38.2
github.com/open-policy-agent/cert-controller v0.13.0
github.com/open-policy-agent/cert-controller v0.14.0
go.uber.org/zap v1.27.0
golang.org/x/crypto v0.41.0
k8s.io/api v0.34.0
k8s.io/apimachinery v0.34.0
k8s.io/client-go v0.34.0
k8s.io/code-generator v0.34.0
k8s.io/api v0.34.1
k8s.io/apimachinery v0.34.1
k8s.io/client-go v0.34.1
k8s.io/code-generator v0.34.1
k8s.io/component-helpers v0.34.0
k8s.io/klog/v2 v2.130.1
k8s.io/kube-openapi v0.0.0-20250710124328-f3f2b991d03b
k8s.io/utils v0.0.0-20250604170112-4c0f3b243397
sigs.k8s.io/controller-runtime v0.22.0
sigs.k8s.io/jobset v0.9.0
sigs.k8s.io/controller-runtime v0.22.1
sigs.k8s.io/jobset v0.10.1
sigs.k8s.io/kind v0.30.0
sigs.k8s.io/scheduler-plugins v0.30.6
sigs.k8s.io/structured-merge-diff/v6 v6.3.0
Expand Down Expand Up @@ -57,9 +57,9 @@ require (
github.com/pelletier/go-toml v1.9.5 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
github.com/prometheus/client_golang v1.23.0 // indirect
github.com/prometheus/client_golang v1.23.2 // indirect
github.com/prometheus/client_model v0.6.2 // indirect
github.com/prometheus/common v0.65.0 // indirect
github.com/prometheus/common v0.66.1 // indirect
github.com/prometheus/procfs v0.16.1 // indirect
github.com/spf13/cobra v1.9.1 // indirect
github.com/spf13/pflag v1.0.6 // indirect
Expand All @@ -80,7 +80,7 @@ require (
golang.org/x/tools v0.36.0 // indirect
golang.org/x/tools/go/expect v0.1.1-deprecated // indirect
gomodules.xyz/jsonpatch/v2 v2.4.0 // indirect
google.golang.org/protobuf v1.36.7 // indirect
google.golang.org/protobuf v1.36.8 // indirect
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
gopkg.in/inf.v0 v0.9.1 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
Expand Down
Loading
Loading