Skip to content

Commit

Permalink
kokoro: Call 'docker push' correctly while pushing images (#78)
Browse files Browse the repository at this point in the history
Presently tests are failing due to the following error:
```
/dev/stdin: line 578: push: command not found
```

The changes were merged in #73 yesterday have a typo: In file
[.kokoro/psm_interop_kokoro_lib.sh, line
1141](https://github.com/grpc/psm-interop/pull/73/files#diff-727d543ec20c63535f31b5e8a83d9ca2762abc4349cc620a105efe9900448cedR1141),
`psm::tools::run_verbose push "${image_name}:${to_tag}"` should be
`psm::tools::run_verbose docker push "${image_name}:${to_tag}"`.
  • Loading branch information
arjan-bal committed May 2, 2024
1 parent 8b7701a commit 85f3da0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .kokoro/psm_interop_kokoro_lib.sh
Original file line number Diff line number Diff line change
Expand Up @@ -1138,5 +1138,5 @@ tag_and_push_docker_image() {
local to_tag="$3"

psm::tools::run_verbose docker tag "${image_name}:${from_tag}" "${image_name}:${to_tag}"
psm::tools::run_verbose push "${image_name}:${to_tag}"
psm::tools::run_verbose docker push "${image_name}:${to_tag}"
}

0 comments on commit 85f3da0

Please sign in to comment.