Skip to content

Commit

Permalink
ci(proxy): Update GH action flag on proxy deployment (#9535)
Browse files Browse the repository at this point in the history
## Problem

Based on a recent proxy deployment issue, we deployed another proxy
version (proxy-scram), which was not needed when deploying a specific
proxy type. we have
[PR](https://github.com/neondatabase/infra/pull/2142) to update on the
infra branch and need to update CI in this repo which triggers proxy
deployment.

## Summary of changes

- Update proxy deployment flag 

## Checklist before requesting a review

- [x] I have performed a self-review of my code.
- [ ] If it is a core feature, I have added thorough tests.
- [ ] Do we need to implement analytics? if so did you add the relevant
metrics to the dashboard?
- [ ] If this PR requires public announcement, mark it with
/release-notes label and add several sentences in this section.

## Checklist before merging

- [ ] Do not forget to reformat commit message to not include the above
checklist
  • Loading branch information
rahulinux authored Oct 28, 2024
1 parent 01b6843 commit 8dd555d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1116,7 +1116,11 @@ jobs:
gh workflow --repo neondatabase/infra run deploy-proxy-prod.yml --ref main \
-f deployPgSniRouter=true \
-f deployProxy=true \
-f deployProxyLink=true \
-f deployPrivatelinkProxy=true \
-f deployLegacyProxyScram=true \
-f deployProxyScram=true \
-f deployProxyAuthBroker=true \
-f branch=main \
-f dockerTag=${{needs.tag.outputs.build-tag}}
else
Expand Down

1 comment on commit 8dd555d

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

5362 tests run: 5130 passed, 0 failed, 232 skipped (full report)


Code coverage* (full report)

  • functions: 31.3% (7689 of 24580 functions)
  • lines: 48.7% (60475 of 124102 lines)

* collected from Rust tests only


The comment gets automatically updated with the latest test results
8dd555d at 2024-10-28T13:32:43.638Z :recycle:

Please sign in to comment.