mirror of
https://github.com/prometheus-community/ansible
synced 2024-11-23 12:23:12 +00:00
dcfbfa84d2
Signed-off-by: Paweł Krupa (paulfantom) <pawel@krupa.net.pl>
13 lines
344 B
YAML
13 lines
344 B
YAML
---
|
|
go_arch_map:
|
|
i386: '386'
|
|
x86_64: 'amd64'
|
|
aarch64: 'arm64'
|
|
armv7l: 'armv7'
|
|
armv6l: 'armv6'
|
|
|
|
go_arch: "{{ go_arch_map[ansible_architecture] | default(ansible_architecture) }}"
|
|
_alertmanager_binary_install_dir: '/usr/local/bin'
|
|
|
|
# The expected location of the amtool configuration file
|
|
_alertmanager_amtool_config_dir: '/etc/amtool'
|