Skip to content

Commit

Permalink
fix(tensorboard-controller): Create manager executable (#129)
Browse files Browse the repository at this point in the history
* fix(tensorboard-controller): Create `manager` executable
  • Loading branch information
orfeas-k authored Sep 4, 2024
1 parent 287d9e9 commit d74bfd2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion tensorboard-controller/rockcraft.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ services:
summary: "tensorboard-controller service"
startup: enabled
user: ubuntu
command: "tensorboard-controller"
command: "/manager"
platforms:
amd64:

Expand Down Expand Up @@ -42,6 +42,8 @@ parts:
- GOOS: linux
stage-packages:
- bash
organize:
bin/tensorboard-controller: "/manager"

non-root-user:
plugin: nil
Expand Down
2 changes: 1 addition & 1 deletion tensorboard-controller/tests/test_rock.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def test_rock(rock_test_env):
"exec",
"ls",
"-la",
"/bin/tensorboard-controller",
"/manager",
],
check=True,
)

0 comments on commit d74bfd2

Please sign in to comment.