-
Notifications
You must be signed in to change notification settings - Fork 721
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rename Kubeflow Training to Kubeflow Trainer
Signed-off-by: Andrey Velichkevich <[email protected]>
- Loading branch information
1 parent
bebacdc
commit 2996292
Showing
17 changed files
with
85 additions
and
102 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
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 |
---|---|---|
@@ -1,12 +1,12 @@ | ||
blank_issues_enabled: true | ||
|
||
contact_links: | ||
- name: Training Operator Documentation | ||
url: https://www.kubeflow.org/docs/components/training/ | ||
- name: Kubeflow Trainer Documentation | ||
url: https://www.kubeflow.org/docs/components/trainer/ | ||
about: Much help can be found in the docs | ||
- name: Kubeflow Training Operator Slack Channel | ||
- name: Kubeflow Trainer Slack Channel | ||
url: https://www.kubeflow.org/docs/about/community/#kubeflow-slack-channels | ||
about: Ask the Training Operator community on CNCF Slack | ||
- name: Kubeflow Training Operator Community Meeting | ||
about: Ask the Kubeflow Trainer community on CNCF Slack | ||
- name: Kubeflow Training and AutoML WG Community Meeting | ||
url: https://bit.ly/2PWVCkV | ||
about: Join the Kubeflow Training working group meeting |
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 was deleted.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
.github/workflows/publish-images.yaml → .github/workflows/build-and-push-images.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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: Publish Kubeflow Trainer Images | ||
name: Build and Publish Images | ||
|
||
on: | ||
- push | ||
|
File renamed without changes.
File renamed without changes.
This file was deleted.
Oops, something went wrong.
This file was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,18 @@ | ||
name: Free-Up Disk Space | ||
description: Remove Non-Essential Tools And Move Docker Data Directory to /mnt/docker | ||
# TODO (andreyvelich): Refactor this once we have e2e test for Kubeflow Trainer. | ||
name: Setup E2E test template | ||
description: A composite action to setup e2e tests | ||
|
||
inputs: | ||
kubernetes-version: | ||
required: true | ||
description: Kubernetes version | ||
python-version: | ||
required: true | ||
description: Python version | ||
gang-scheduler-name: | ||
required: false | ||
default: "none" | ||
description: Gang scheduler name | ||
|
||
runs: | ||
using: composite | ||
|
@@ -47,3 +60,40 @@ runs: | |
sudo systemctl start docker | ||
echo "Docker service status:" | ||
sudo systemctl --no-pager -l -o short status docker | ||
- name: Setup Python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: ${{ inputs.python-version }} | ||
|
||
- name: Setup Go | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version-file: go.mod | ||
|
||
- name: Create k8s Kind Cluster | ||
uses: helm/[email protected] | ||
with: | ||
node_image: kindest/node:${{ inputs.kubernetes-version }} | ||
cluster_name: training-operator-cluster | ||
kubectl_version: ${{ inputs.kubernetes-version }} | ||
|
||
- name: Build training-operator | ||
shell: bash | ||
run: | | ||
./scripts/gha/build-image.sh | ||
env: | ||
TRAINING_CI_IMAGE: kubeflowtraining/training-operator:test | ||
|
||
- name: Deploy training operator | ||
shell: bash | ||
run: | | ||
./scripts/gha/setup-training-operator.sh | ||
docker system prune -a -f | ||
docker system df | ||
df -h | ||
env: | ||
KIND_CLUSTER: training-operator-cluster | ||
TRAINING_CI_IMAGE: kubeflowtraining/training-operator:test | ||
GANG_SCHEDULER_NAME: ${{ inputs.gang-scheduler-name }} | ||
KUBERNETES_VERSION: ${{ inputs.kubernetes-version }} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,13 @@ on: | |
- pull_request | ||
|
||
jobs: | ||
pre-commit: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-python@v3 | ||
- uses: pre-commit/[email protected] | ||
|
||
python-test: | ||
name: Test | ||
runs-on: ubuntu-latest | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# Training Operator Documentation | ||
# Kubeflow Trainer Documentation | ||
|
||
Welcome to Kubeflow Training Operator! | ||
Welcome to Kubeflow Trainer! | ||
|
||
The Training Operator documentation is available on [kubeflow.org](https://www.kubeflow.org/docs/components/training/). | ||
The Kubeflow Trainer documentation is available on [kubeflow.org](https://www.kubeflow.org/docs/components/trainer/). |
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