Skip to content

[nomad] Upgrade supported Nomad version to include v1.9.7 #6248

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
May 23, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/nomad.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
runs-on: ubuntu-24.04
strategy:
matrix:
nomad: [ "1.6.10-1", "1.7.7-1" ]
nomad: [ "1.7.7-1", "1.9.7-1" ]
fail-fast: false
steps:
- name: Check out the codebase.
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## Unreleased

### 💡 Enhancements 💡

- (Splunk) `deployments/nomad`: Add official support for `v1.9.7` ([#6248](https://github.com/signalfx/splunk-otel-collector/pull/6248))

### 🧰 Bug fixes 🧰

- (Splunk) `receiver/smartagent`: Use the system certificate pool as the default pool on Windows, keeping behavior of monitors consistent with other OSes. ([#6240](https://github.com/signalfx/splunk-otel-collector/pull/6240))
Expand Down
2 changes: 1 addition & 1 deletion deployments/nomad/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ The Splunk OpenTelemetry Collector for HashiCorp Nomad is an orchestrator deploy

To run the job files you need:

- Access to a Nomad cluster (**version 1.6.2 to 1.7.5**)
- Access to a Nomad cluster (**version 1.6.2 to 1.9.7**)
- (Optional) Access to a Consul cluster

To start a local dev agent for Nomad and Consul, download the
Expand Down
2 changes: 1 addition & 1 deletion deployments/nomad/otel-agent.nomad
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ job "otel-agent" {
constraint {
attribute = "${attr.nomad.version}"
operator = "semver"
value = "< 1.8.0"
value = "< 1.9.8"
}

group "otel-agent" {
Expand Down
2 changes: 1 addition & 1 deletion deployments/nomad/otel-gateway.nomad
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ job "otel-gateway" {
constraint {
attribute = "${attr.nomad.version}"
operator = "semver"
value = "< 1.8.0"
value = "< 1.9.8"
}

group "otel-gateway" {
Expand Down