-
Notifications
You must be signed in to change notification settings - Fork 893
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update kubeflow/training-operator manifests from v1.8.0-rc.0 (#2699)
Signed-off-by: Ricardo M. Oliveira <rmartine@redhat.com>
- Loading branch information
Showing
19 changed files
with
19,111 additions
and
21,115 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6,561 changes: 3,099 additions & 3,462 deletions
6,561
apps/training-operator/upstream/base/crds/kubeflow.org_mpijobs.yaml
Large diffs are not rendered by default.
Oops, something went wrong.
6,562 changes: 3,101 additions & 3,461 deletions
6,562
apps/training-operator/upstream/base/crds/kubeflow.org_mxjobs.yaml
Large diffs are not rendered by default.
Oops, something went wrong.
6,851 changes: 3,230 additions & 3,621 deletions
6,851
apps/training-operator/upstream/base/crds/kubeflow.org_paddlejobs.yaml
Large diffs are not rendered by default.
Oops, something went wrong.
6,875 changes: 3,243 additions & 3,632 deletions
6,875
apps/training-operator/upstream/base/crds/kubeflow.org_pytorchjobs.yaml
Large diffs are not rendered by default.
Oops, something went wrong.
6,566 changes: 3,103 additions & 3,463 deletions
6,566
apps/training-operator/upstream/base/crds/kubeflow.org_tfjobs.yaml
Large diffs are not rendered by default.
Oops, something went wrong.
6,543 changes: 3,088 additions & 3,455 deletions
6,543
apps/training-operator/upstream/base/crds/kubeflow.org_xgboostjobs.yaml
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 15 additions & 0 deletions
15
apps/training-operator/upstream/base/webhook/kustomization.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
apiVersion: kustomize.config.k8s.io/v1beta1 | ||
kind: Kustomization | ||
resources: | ||
- manifests.yaml | ||
commonLabels: | ||
control-plane: kubeflow-training-operator | ||
patches: | ||
- path: patch.yaml | ||
target: | ||
group: admissionregistration.k8s.io | ||
version: v1 | ||
kind: ValidatingWebhookConfiguration | ||
|
||
configurations: | ||
- kustomizeconfig.yaml |
10 changes: 10 additions & 0 deletions
10
apps/training-operator/upstream/base/webhook/kustomizeconfig.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# the following config is for teaching kustomize where to look at when substituting vars. | ||
# It requires kustomize v2.1.0 or newer to work properly. | ||
namespace: | ||
- kind: ValidatingWebhookConfiguration | ||
group: admissionregistration.k8s.io | ||
path: webhooks/clientConfig/service/namespace | ||
create: true | ||
|
||
varReference: | ||
- path: metadata/annotations |
107 changes: 107 additions & 0 deletions
107
apps/training-operator/upstream/base/webhook/manifests.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,107 @@ | ||
--- | ||
apiVersion: admissionregistration.k8s.io/v1 | ||
kind: ValidatingWebhookConfiguration | ||
metadata: | ||
name: validating-webhook-configuration | ||
webhooks: | ||
- admissionReviewVersions: | ||
- v1 | ||
clientConfig: | ||
service: | ||
name: webhook-service | ||
namespace: system | ||
path: /validate-kubeflow-org-v1-mxjob | ||
failurePolicy: Fail | ||
name: validator.mxjob.training-operator.kubeflow.org | ||
rules: | ||
- apiGroups: | ||
- kubeflow.org | ||
apiVersions: | ||
- v1 | ||
operations: | ||
- CREATE | ||
- UPDATE | ||
- DELETE | ||
resources: | ||
- mxjobs | ||
sideEffects: None | ||
- admissionReviewVersions: | ||
- v1 | ||
clientConfig: | ||
service: | ||
name: webhook-service | ||
namespace: system | ||
path: /validate-kubeflow-org-v1-paddlejob | ||
failurePolicy: Fail | ||
name: validator.paddlejob.training-operator.kubeflow.org | ||
rules: | ||
- apiGroups: | ||
- kubeflow.org | ||
apiVersions: | ||
- v1 | ||
operations: | ||
- CREATE | ||
- UPDATE | ||
resources: | ||
- paddlejobs | ||
sideEffects: None | ||
- admissionReviewVersions: | ||
- v1 | ||
clientConfig: | ||
service: | ||
name: webhook-service | ||
namespace: system | ||
path: /validate-kubeflow-org-v1-pytorchjob | ||
failurePolicy: Fail | ||
name: validator.pytorchjob.training-operator.kubeflow.org | ||
rules: | ||
- apiGroups: | ||
- kubeflow.org | ||
apiVersions: | ||
- v1 | ||
operations: | ||
- CREATE | ||
- UPDATE | ||
resources: | ||
- pytorchjobs | ||
sideEffects: None | ||
- admissionReviewVersions: | ||
- v1 | ||
clientConfig: | ||
service: | ||
name: webhook-service | ||
namespace: system | ||
path: /validate-kubeflow-org-v1-tfjob | ||
failurePolicy: Fail | ||
name: validator.tfjob.training-operator.kubeflow.org | ||
rules: | ||
- apiGroups: | ||
- kubeflow.org | ||
apiVersions: | ||
- v1 | ||
operations: | ||
- CREATE | ||
- UPDATE | ||
resources: | ||
- tfjobs | ||
sideEffects: None | ||
- admissionReviewVersions: | ||
- v1 | ||
clientConfig: | ||
service: | ||
name: webhook-service | ||
namespace: system | ||
path: /validate-kubeflow-org-v1-xgboostjob | ||
failurePolicy: Fail | ||
name: validator.xgboostjob.training-operator.kubeflow.org | ||
rules: | ||
- apiGroups: | ||
- kubeflow.org | ||
apiVersions: | ||
- v1 | ||
operations: | ||
- CREATE | ||
- UPDATE | ||
resources: | ||
- xgboostjobs | ||
sideEffects: None |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
- op: replace | ||
path: /webhooks/0/clientConfig/service/name | ||
value: training-operator | ||
- op: replace | ||
path: /webhooks/1/clientConfig/service/name | ||
value: training-operator | ||
- op: replace | ||
path: /webhooks/2/clientConfig/service/name | ||
value: training-operator | ||
- op: replace | ||
path: /webhooks/3/clientConfig/service/name | ||
value: training-operator | ||
- op: replace | ||
path: /webhooks/4/clientConfig/service/name | ||
value: training-operator | ||
- op: replace | ||
path: /metadata/name | ||
value: validator.training-operator.kubeflow.org |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters