Skip to content

Commit

Permalink
key
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasht86 committed Jul 3, 2024
1 parent 9fa3c42 commit 58bf4e4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy-with-java.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
python .github/workflows/deploy_to_prod.py \
--tenant vespa-team \
--application testapp \
--api-key $VESPA_TEAM_API_KEY \
--api-key "${VESPA_TEAM_API_KEY}" \
--application-root tests/testapps/production-deployment-with-tests-java/target/ \
--max-wait 3600 \
--source-url "$(git config --get remote.origin.url | sed 's+git@\(.*\):\(.*\)\.git+https://\1/\2+')/commit/$(git rev-parse HEAD)"
4 changes: 3 additions & 1 deletion .github/workflows/deploy_to_prod.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ def deploy_prod(
args = argparse.ArgumentParser()
args.add_argument("--tenant", required=True, help="Vespa Cloud tenant")
args.add_argument("--application", required=True, help="Vespa Cloud application")
args.add_argument("--api-key", required=True, help="Vespa Cloud API key")
args.add_argument(
"--api-key", required=True, help="Vespa Cloud Control-plane API key"
)
args.add_argument(
"--application-root", required=True, help="Path to the Vespa application root"
)
Expand Down

0 comments on commit 58bf4e4

Please sign in to comment.