Skip to content

Commit

Permalink
Update release script due to new directories layout
Browse files Browse the repository at this point in the history
  • Loading branch information
ScorpioCPH committed Jan 16, 2018
1 parent ef619f6 commit 8863936
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion developer_guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ export MY_POD_NAME=my-pod
Make a copy of `grpc_tensorflow_server.py` and create a config file named `controller-config-file.yaml`:

```sh
cp grpc_tensorflow_server/grpc_tensorflow_server.py /tmp/grpc_tensorflow_server.py
cp hack/grpc_tensorflow_server/grpc_tensorflow_server.py /tmp/grpc_tensorflow_server.py

cat > /tmp/controller-config-file.yaml << EOL
grpcServerFilePath: /tmp/grpc_tensorflow_server.py
Expand Down
4 changes: 2 additions & 2 deletions py/release.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,12 +151,12 @@ def build_operator_image(root_dir, registry, project=None, should_push=True):

# List of paths to copy relative to root.
sources = [
"images/tf_operator/Dockerfile",
"build/images/tf_operator/Dockerfile",
os.path.join(go_path, "bin/tf_operator"),
os.path.join(go_path, "bin/e2e"),
os.path.join(go_path, "bin/backend"),
"dashboard/frontend/build",
"grpc_tensorflow_server/grpc_tensorflow_server.py"
"hack/grpc_tensorflow_server/grpc_tensorflow_server.py"
]

for s in sources:
Expand Down
2 changes: 1 addition & 1 deletion tf_job_design_doc.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ The controller manages a distributed TFJob by creating a series of Job controlle

When the master exits successfully or with a permanent error the job is considered finished. There is an open issue([issues/61](https://github.com/tensorflow/k8s/issues/61)) to make the changes necessary to support evaluation with the Estimator API in 1.4. The pods aren't deleted until the TfJob is deleted. This allows the logs to be fetched via kubectl logs.

![Resources for TfJob](diagrams/tfjob_k8s_resources.svg)
![Resources for TfJob](docs/diagrams/tfjob_k8s_resources.svg)


## TensorBoard
Expand Down

0 comments on commit 8863936

Please sign in to comment.