Update to 2025-07-04 09:00

This commit is contained in:
Daniel Berteaud
2025-07-04 09:00:19 +02:00
parent 3a08150ae4
commit f8d3e57155
35 changed files with 343 additions and 8 deletions

View File

@@ -0,0 +1,3 @@
---
vector_major_version: 0

View File

@@ -0,0 +1,20 @@
---
- name: Add Vector repo key
apt_key:
url: "{{ item }}"
environment:
https_proxy: "{{ system_proxy | default('') }}"
loop:
- https://keys.datadoghq.com/DATADOG_APT_KEY_CURRENT.public
- https://keys.datadoghq.com/DATADOG_APT_KEY_C0962C7D.public
- https://keys.datadoghq.com/DATADOG_APT_KEY_F14F620E.public
tags: repo,log,vector
- name: Add Vector repo
apt_repository:
repo: deb https://apt.vector.dev/ stable vector-0
filename: vector
environment:
https_proxy: "{{ system_proxy | default('') }}"
tags: repo,log,vector

View File

@@ -0,0 +1,14 @@
---
- name: Configure vector repo
yum_repository:
name: vector
description: Vector
baseurl: https://yum.vector.dev/stable/vector-0/$basearch/
gpgcheck: True
gpgkey:
- https://keys.datadoghq.com/DATADOG_RPM_KEY_CURRENT.public
- https://keys.datadoghq.com/DATADOG_RPM_KEY_B01082D3.public
- https://keys.datadoghq.com/DATADOG_RPM_KEY_FD4BF915.public
priority: 1
tags: repo,vector,log

View File

@@ -0,0 +1,4 @@
---
- include_tasks: "{{ ansible_os_family }}.yml"
tags: always