|
28 | 28 | dest: /tmp/auth-v{{ gotrue_release }}-{{ gotrue_arch }}.tar.gz |
29 | 29 | checksum: "{{ gotrue_checksum }}" |
30 | 30 | timeout: 60 |
| 31 | + register: download_result |
| 32 | + until: download_result is succeeded |
| 33 | + retries: 3 |
| 34 | + delay: 2 |
31 | 35 |
|
32 | 36 | - name: PostgREST - download ubuntu binary archive (arm) |
33 | 37 | get_url: |
34 | 38 | url: "https://github.com/PostgREST/postgrest/releases/download/v{{ postgrest_release }}/postgrest-v{{ postgrest_release }}-{{ postgrest_binary }}.tar.xz" |
35 | 39 | dest: /tmp/postgrest-{{ postgrest_release }}-{{ arch }}.tar.xz |
36 | 40 | checksum: "{{ postgrest_checksum }}" |
37 | 41 | timeout: 60 |
| 42 | + register: download_result |
| 43 | + until: download_result is succeeded |
| 44 | + retries: 3 |
| 45 | + delay: 2 |
38 | 46 |
|
39 | 47 | - name: Download adminapi archive |
40 | 48 | get_url: |
41 | 49 | url: "https://supabase-public-artifacts-bucket.s3.amazonaws.com/supabase-admin-api/v{{ adminapi_release }}/supabase-admin-api_{{ adminapi_release }}_linux_{{ arch }}.tar.gz" |
42 | 50 | dest: "/tmp/adminapi.tar.gz" |
43 | 51 | timeout: 90 |
| 52 | + register: download_result |
| 53 | + until: download_result is succeeded |
| 54 | + retries: 3 |
| 55 | + delay: 2 |
44 | 56 |
|
45 | 57 | - name: adminapi - unpack archive in /tmp |
46 | 58 | unarchive: |
|
57 | 69 | url: "https://supabase-public-artifacts-bucket.s3.amazonaws.com/admin-mgr/v{{ adminmgr_release }}/admin-mgr_{{ adminmgr_release }}_linux_{{ arch }}.tar.gz" |
58 | 70 | dest: "/tmp/admin-mgr.tar.gz" |
59 | 71 | timeout: 90 |
| 72 | + register: download_result |
| 73 | + until: download_result is succeeded |
| 74 | + retries: 3 |
| 75 | + delay: 2 |
60 | 76 |
|
61 | 77 | - name: admin-mgr - unpack archive in /tmp |
62 | 78 | unarchive: |
|
73 | 89 | url: "https://supabase-public-artifacts-bucket.s3.amazonaws.com/supabase-admin-agent/v{{ supabase_admin_agent_release }}/supabase-admin-agent-{{ supabase_admin_agent_release }}-linux-{{ arch }}.tar.gz" |
74 | 90 | dest: "/tmp/supabase-admin-agent.tar.gz" |
75 | 91 | timeout: 90 |
| 92 | + register: download_result |
| 93 | + until: download_result is succeeded |
| 94 | + retries: 3 |
| 95 | + delay: 2 |
76 | 96 |
|
77 | 97 | - name: supabase-admin-agent - unpack archive in /tmp |
78 | 98 | unarchive: |
|
0 commit comments