8000 Install Vector for shipping logs on internal builds · chazgorman/postgres-1@8b4ea34 · GitHub
[go: up one dir, main page]

Skip to content

Commit 8b4ea34

Browse files
committed
Install Vector for shipping logs on internal builds
1 parent 1b60dfb commit 8b4ea34

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed

ansible/tasks/setup-supabase-internal.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,18 @@
2727
shell: "/tmp/aws/install"
2828
become: true
2929

30+
- name: install Vector for logging
31+
become: yes
32+
apt:
33+
deb: "{{ vector_x86_deb }}"
34+
when: platform == "amd64"
35+
36+
- name: install Vector for logging
37+
become: yes
38+
apt:
39+
deb: "{{ vector_arm_deb }}"
40+
when: platform == "arm64"
41+
3042
- name: Install Postgres exporter
3143
import_tasks: internal/postgres-exporter.yml
3244

ansible/vars.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,3 +74,6 @@ supautils_release_checksum: sha1:326ac5c1933bd30d4a50da7568b27629a9ec544b
7474
pljava_release: "1_6_2"
7575
pljava_release_checksum: sha1:9610b80cbd13d4d43bcdaa2928365dbfd1bf6e94
7676

77+
78+
vector_x86_deb: 'https://packages.timber.io/vector/0.17.0/vector-0.17.0-amd64.deb'
79+
vector_arm_deb: 'https://packages.timber.io/vector/0.17.0/vector-0.17.0-arm64.deb'

0 commit comments

Comments
 (0)
0