Skip to content

Commit

Permalink
ansible: Add debian 11 support, remove debian 8 (open-telemetry#1547)
Browse files Browse the repository at this point in the history
* ansible: Add debian 11 support, remove debian 8

* Update changelog
  • Loading branch information
jeffreyc-splunk authored May 12, 2022
1 parent 915578d commit 8d9c902
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 6 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ansible.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ jobs:
- centos8
- debian9
- debian10
- debian11
- opensuse12
- opensuse15
- ubuntu1604
Expand Down
8 changes: 8 additions & 0 deletions deployments/ansible/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

## Unreleased

### 🛑 Breaking changes 🛑

- Removed support for Debian 8

### 💡 Enhancements 💡

- Add support for Debian 11

## ansible-v0.6.0

### 🧰 Bug fixes 🧰
Expand Down
4 changes: 2 additions & 2 deletions deployments/ansible/roles/collector/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,8 +125,8 @@ how to use the role in a playbook with minimal required configuration:
(**default:** `true`)

- `td_agent_version`: Version of td-agent (fluentd package) that will be
installed (**default:** `3.3.0` for Debian jessie, `3.7.1` for Debian
stretch, and `4.1.1` for other distros`)
installed (**default:** `3.7.1` for Debian stretch and `4.3.0` for other
distros)

- `splunk_fluentd_config`: Path to the fluentd config file on the remote host.
(**default:** `/etc/otel/collector/fluentd/fluent.conf` on Linux,
Expand Down
3 changes: 1 addition & 2 deletions deployments/ansible/roles/collector/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,7 @@ splunk_ballast_size_mib: ""
install_fluentd: true

# Explicitly set version of td-agent,
# By default: 3.3.0 for Debian jessie, 3.7.1 for Debian stretch,
# and 4.1.1 for other distros.
# By default: 3.7.1 for Debian stretch and 4.3.0 for other distros.
td_agent_version: ""

# Default path on Linux: "/etc/otel/collector/fluentd/fluent.conf".
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@
{{ td_agent_version }}
{%- elif ansible_distribution_release == "stretch" -%}
3.7.1-0
{%- elif ansible_distribution_release == "jessie" -%}
3.3.0-1
{%- elif ansible_os_family == "Debian" -%}
4.3.0-1
{%- else -%}
Expand Down

0 comments on commit 8d9c902

Please sign in to comment.