Skip to content

Commit fdb0565

Browse files
committed
chore: upgrade admin-mgr and upload artifact to internal bucket
1 parent 6b5ea89 commit fdb0565

File tree

3 files changed

+20
-2
lines changed

3 files changed

+20
-2
lines changed

ansible/manifest-playbook.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,22 @@
6161
shell: |
6262
cd /tmp && tar -cJf supabase-admin-api-{{ adminapi_release }}-arm64.tar.xz supabase-admin-api
6363
64+
- name: Download admin-mgr archive
65+
get_url:
66+
url: "https://supabase-public-artifacts-bucket.s3.amazonaws.com/admin-mgr/v{{ adminmgr_release }}/admin-mgr_{{ adminmgr_release }}_linux_{{ arch }}.tar.gz"
67+
dest: "/tmp/admin-mgr.tar.gz"
68+
timeout: 90
69+
70+
- name: admin-mgr - unpack archive in /tmp
71+
unarchive:
72+
remote_src: yes
73+
src: /tmp/admin-mgr.tar.gz
74+
dest: /tmp
75+
76+
- name: admin-mgr - pack archive
77+
shell: |
78+
cd /tmp && tar -cJf admin-mgr-{{ adminmgr_release }}-arm64.tar.xz admin-mgr
79+
6480
- name: upload archives
6581
shell: |
6682
aws s3 cp /tmp/{{ item.file }} s3://{{ internal_artifacts_bucket }}/upgrades/{{ item.service }}/{{ item.file }}
@@ -71,3 +87,5 @@
7187
file: postgrest-{{ postgrest_release }}-arm64.tar.xz
7288
- service: supabase-admin-api
7389
file: supabase-admin-api-{{ adminapi_release }}-arm64.tar.xz
90+
- service: admin-mgr
91+
file: admin-mgr-{{ adminmgr_release }}-arm64.tar.xz

ansible/vars.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ postgres_exporter_release_checksum:
4242
amd64: sha256:ff541bd3ee19c0ae003d71424a75edfcc8695e828dd20d5b4555ce433c89d60b
4343

4444
adminapi_release: 0.49.0
45-
adminmgr_release: 0.10.0
45+
adminmgr_release: 0.10.2
4646

4747
# Postgres Extensions
4848
postgis_release: "3.3.2"

common.vars.pkr.hcl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
postgres-version = "15.1.0.118"
1+
postgres-version = "15.1.0.119"

0 commit comments

Comments
 (0)