Skip to content

Commit

Permalink
fix: Updated promtail arch map for aarch64 matching (#257)
Browse files Browse the repository at this point in the history
  • Loading branch information
voidquark authored Aug 13, 2024
2 parents 377a17a + 47bb9fb commit cdc1746
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions roles/loki/vars/Debian.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
---
__loki_arch_map:
x86_64: 'amd64'
armv6l: 'arm'
armv7l: 'arm'
aarch64: 'arm64'

__loki_arch: "{{ __loki_arch_map[ansible_architecture] | default(ansible_architecture) }}"
3 changes: 3 additions & 0 deletions roles/promtail/vars/Debian.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
---
__promtail_arch_map:
x86_64: 'amd64'
armv6l: 'arm'
armv7l: 'arm'
aarch64: 'arm64'

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

0 comments on commit cdc1746

Please sign in to comment.