8000 Fixes to ensure PostgREST and Kong are properly installed by dragarcia · Pull Request #278 · supabase/postgres · GitHub
[go: up one dir, main page]

Skip to content

Fixes to ensure PostgREST and Kong are prop 8000 erly installed #278

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 6 commits into from
Aug 22, 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
1 change: 0 additions & 1 deletion ansible/tasks/clean-build-dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,5 @@
- gcc-10
- ninja-build
- python2
- zlib1g-dev
state: absent
autoremove: yes
4 changes: 2 additions & 2 deletions ansible/tasks/setup-extensions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,5 +64,5 @@
- name: Install pg_jsonschema
import_tasks: tasks/postgres-extensions/22-pg_jsonschema.yml

- name: Install vault
import_tasks: tasks/postgres-extensions/23-vault.yml
# - name: Install vault
# import_tasks: tasks/postgres-extensions/23-vault.yml
3 changes: 3 additions & 0 deletions ansible/tasks/setup-kong.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@
- name: Kong - deb installation
apt: deb=file:///tmp/kong.deb

- name: Kong - ensure it is NOT autoremovd
shell: apt-mark manual kong

- name: Kong - configuration
template:
src: files/kong_config/kong.conf.j2
Expand Down
1 change: 1 addition & 0 deletions ansible/tasks/setup-postgrest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
apt:
pkg:
- libpq5
- libnuma-dev

- name: PostgREST - download ubuntu binary archive (arm)
get_url:
Expand Down
4 changes: 2 additions & 2 deletions ansible/vars.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ golang_version_checksum:
arm64: sha256:beacbe1441bee4d7978b900136d1d6a71d150f0a9bb77e9d50c822065623a35a
amd64: sha256:956f8507b302ab0bb747613695cdae10af99bbd39a90cae522b7c0302cc27245

kong_release_target: xenial # if it works, it works
kong_release_target: focal # if it works, it works
kong_deb: kong_2.8.1_arm64.deb
kong_deb_checksum: sha1:e61882d652d1f41bc3b7d179163b8a7abfe41d94
kong_deb_checksum: sha1:2086f6ccf8454fe64435252fea4d29d736d7ec61

nginx_release: 1.22.0
nginx_release_checksum: sha1:419efb77b80f165666e2ee406ad8ae9b845aba93
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.61"
postgres-version = "14.1.0.62"
0