Skip to content

Commit cdc1746

Browse files
authored
fix: Updated promtail arch map for aarch64 matching (#257)
2 parents 377a17a + 47bb9fb commit cdc1746

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

roles/loki/vars/Debian.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
---
22
__loki_arch_map:
33
x86_64: 'amd64'
4+
armv6l: 'arm'
5+
armv7l: 'arm'
6+
aarch64: 'arm64'
47

58
__loki_arch: "{{ __loki_arch_map[ansible_architecture] | default(ansible_architecture) }}"

roles/promtail/vars/Debian.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
---
22
__promtail_arch_map:
33
x86_64: 'amd64'
4+
armv6l: 'arm'
5+
armv7l: 'arm'
6+
aarch64: 'arm64'
47

58
__promtail_arch: "{{ __promtail_arch_map[ansible_architecture] | default(ansible_architecture) }}"

0 commit comments

Comments
 (0)