-
Notifications
You must be signed in to change notification settings - Fork 169
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into add-no-init-into-waiting
- Loading branch information
Showing
88 changed files
with
7,507 additions
and
8,213 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
--- | ||
name: elasticjob-controller-test | ||
description: run gotest to execute go test cases of ElasticJob operator | ||
runs: | ||
using: 'docker' | ||
image: "easydl/dlrover:ci" | ||
args: | ||
- "/bin/bash" | ||
- "-c" | ||
- "rm -rf /usr/local/go && \ | ||
wget -q https://go.dev/dl/go1.23.4.linux-amd64.tar.gz && \ | ||
tar -C /usr/local -xzf go1.23.4.linux-amd64.tar.gz && \ | ||
cd go/elasticjob && go test ./..." |
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 |
---|---|---|
|
@@ -3,12 +3,9 @@ name: go-master-test | |
description: run gotest to execute go test cases of ElasticJob operator | ||
runs: | ||
using: 'docker' | ||
image: "easydl/dlrover:ci" | ||
image: "golang:1.23.4" | ||
args: | ||
- "/bin/bash" | ||
- "-c" | ||
- "rm -rf /usr/local/go && \ | ||
wget -q https://go.dev/dl/go1.23.4.linux-amd64.tar.gz && \ | ||
tar -C /usr/local -xzf go1.23.4.linux-amd64.tar.gz && \ | ||
go install github.com/onsi/ginkgo/v2/[email protected] && | ||
cd dlrover/go/master && ginkgo -v ./..." | ||
- "go install github.com/onsi/ginkgo/v2/[email protected] && \ | ||
cd go/master && ginkgo -v ./..." |
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
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
8,086 changes: 0 additions & 8,086 deletions
8,086
dlrover/go/operator/config/crd/bases/elastic.iml.github.io_elasticjobs.yaml
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
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 |
---|---|---|
|
@@ -13,10 +13,10 @@ installed and run `minikube start`. | |
|
||
```bash | ||
# deploy from local directory | ||
$ kubectl -n dlrover apply -k dlrover/go/operator/config/manifests/bases | ||
$ kubectl -n dlrover apply -k go/elasticjob/config/manifests/bases | ||
|
||
# deploy from remote repo | ||
$ deployment="[email protected]:intelligent-machine-learning/dlrover/dlrover/go/operator/config/manifests/bases/?ref=master" | ||
$ deployment="[email protected]:intelligent-machine-learning/dlrover/go/elasticjob/config/manifests/bases/?ref=master" | ||
$ kubectl -n dlrover apply -k $deployment | ||
``` | ||
|
||
|
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 |
---|---|---|
|
@@ -48,7 +48,7 @@ ElasticJob CRD on the cluster by the following steps. | |
|
||
```bash | ||
git clone [email protected]:intelligent-machine-learning/dlrover.git | ||
cd dlrover/dlrover/go/operator/ | ||
cd dlrover/go/elasticjob | ||
make deploy IMG=easydl/elasticjob-controller:master # GO 1.18. | ||
# Grant permission for the DLRover master to Access CRDs. | ||
kubectl -n dlrover apply -f config/manifests/bases/default-role.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
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 |
---|---|---|
|
@@ -25,7 +25,7 @@ git clone [email protected]:intelligent-machine-learning/dlrover.git | |
2. Deploy the controller on the cluster. | ||
|
||
```bash | ||
cd dlrover/dlrover/go/operator/ | ||
cd dlrover/go/elasticjob | ||
make deploy IMG=easydl/elasticjob-controller:master # GO 1.18 | ||
``` | ||
|
||
|
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
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
File renamed without changes.
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
2 changes: 1 addition & 1 deletion
2
...tor/api/v1alpha1/zz_generated.deepcopy.go → ...job/api/v1alpha1/zz_generated.deepcopy.go
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.