10000 fix: retain key packages for PostgREST and Kong by dragarcia · Pull Request #281 · supabase/postgres · GitHub
[go: up one dir, main page]

Skip to content

fix: retain key packages for PostgREST and Kong #281

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Aug 25, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions ansible/tasks/setup-kong.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,10 @@
- name: Kong - deb installation
apt: deb=file:///tmp/kong.deb

- name: Kong - ensure it is NOT autoremovd
shell: apt-mark manual kong
- name: Kong - ensure it is NOT autoremoved
shell: |
set -e
apt-mark manual kong zlib1g*

- name: Kong - configuration
template:
Expand Down
6 changes: 6 additions & 0 deletions ansible/tasks/setup-postgrest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,12 @@
- libpq5
- libnuma-dev

- name: postgis - ensure dependencies do not get autoremoved
shell: |
set -e
apt-mark manual libnuma*
apt-mark auto libnuma*-dev

- name: PostgREST - download ubuntu binary archive (arm)
get_url:
url: "https://github.com/PostgREST/postgrest/releases/download/v{{ postgrest_release }}/postgrest-v{{ postgrest_release }}-ubuntu-aarch64.tar.xz"
Expand Down
2 changes: 1 addition & 1 deletion common.vars.pkr.hcl
Original file line number Diff line number Diff line change
@@ -1 +1 @@
postgres-version = "14.1.0.62"
postgres-version = "14.1.0.63"
0