diff options
author | Baitinq <manuelpalenzuelamerino@gmail.com> | 2024-05-25 00:33:29 +0200 |
---|---|---|
committer | Baitinq <manuelpalenzuelamerino@gmail.com> | 2024-05-25 00:45:24 +0200 |
commit | 5fc94dd8904ee9e5027ef97c82bb8dedc876d6ea (patch) | |
tree | 1d4e455b52c2fd6551d53b28372c595193e9da3a /deploy.sh | |
parent | cleanup (diff) | |
download | fs-tracer-backend-5fc94dd8904ee9e5027ef97c82bb8dedc876d6ea.tar.gz fs-tracer-backend-5fc94dd8904ee9e5027ef97c82bb8dedc876d6ea.tar.bz2 fs-tracer-backend-5fc94dd8904ee9e5027ef97c82bb8dedc876d6ea.zip |
rest-api: deploy with bazel
Diffstat (limited to 'deploy.sh')
-rwxr-xr-x | deploy.sh | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/deploy.sh b/deploy.sh index d66667e..bd4b573 100755 --- a/deploy.sh +++ b/deploy.sh @@ -1,8 +1,6 @@ #!/bin/sh -bazel run //src/rest-api/cmd:push -- --tag "rest-api-$(git rev-parse --short HEAD)" -helm upgrade rest-api --set image.tag="rest-api-$(git rev-parse --short HEAD)" k8s/rest-api +bazel run //k8s/rest-api:chart.upgrade bazel run //src/payload-processor/cmd:push -- --tag "payload-processor-$(git rev-parse --short HEAD)" - helm upgrade payload-processor --set image.tag="payload-processor-$(git rev-parse --short HEAD)" --set db.password=$DB_PASSWORD k8s/payload-processor |