Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[docs] development guide update #1995

Merged
Merged
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
4 changes: 2 additions & 2 deletions docs/development/developer_guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ ln -sf ${GIT_TRAINING} $(go env GOPATH)/src/github.com/kubeflow/training-operato
Install dependencies

```sh
go mod vendor
go mod tidy
```

Build it
Expand Down Expand Up @@ -75,7 +75,7 @@ make run
To verify local operator is working, create an example job and you should see jobs created by it.

```sh
cd ./examples/v1/dist-mnist
cd ./examples/tensorflow/dist-mnist
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nice catch :)

docker build -f Dockerfile -t kubeflow/tf-dist-mnist-test:1.0 .
kubectl create -f ./tf_job_mnist.yaml
```
Expand Down
Loading