Skip to content

Commit 6949398

Browse files
authored
[nomad] Upgrade supported Nomad version to include v1.9.7 (#6248)
* [nomad] Upgrade supported Nomad version to include v1.9.7 * Fix github/nomad workflow to use valid 1.9.7-1 version * add changelog
1 parent 6dff418 commit 6949398

File tree

5 files changed

+8
-4
lines changed

5 files changed

+8
-4
lines changed

.github/workflows/nomad.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
runs-on: ubuntu-24.04
2626
strategy:
2727
matrix:
28-
nomad: [ "1.6.10-1", "1.7.7-1" ]
28+
nomad: [ "1.7.7-1", "1.9.7-1" ]
2929
fail-fast: false
3030
steps:
3131
- name: Check out the codebase.

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## Unreleased
44

5+
### 💡 Enhancements 💡
6+
7+
- (Splunk) `deployments/nomad`: Add official support for `v1.9.7` ([#6248](https://github.com/signalfx/splunk-otel-collector/pull/6248))
8+
59
### 🧰 Bug fixes 🧰
610

711
- (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))

deployments/nomad/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ The Splunk OpenTelemetry Collector for HashiCorp Nomad is an orchestrator deploy
88

99
To run the job files you need:
1010

11-
- Access to a Nomad cluster (**version 1.6.2 to 1.7.5**)
11+
- Access to a Nomad cluster (**version 1.6.2 to 1.9.7**)
1212
- (Optional) Access to a Consul cluster
1313

1414
To start a local dev agent for Nomad and Consul, download the

deployments/nomad/otel-agent.nomad

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ job "otel-agent" {
55
constraint {
66
attribute = "${attr.nomad.version}"
77
operator = "semver"
8-
value = "< 1.8.0"
8+
value = "< 1.9.8"
99
}
1010

1111
group "otel-agent" {

deployments/nomad/otel-gateway.nomad

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ job "otel-gateway" {
55
constraint {
66
attribute = "${attr.nomad.version}"
77
operator = "semver"
8-
value = "< 1.8.0"
8+
value = "< 1.9.8"
99
}
1010

1111
group "otel-gateway" {

0 commit comments

Comments
 (0)