From e6d1bec7ec6f68f9c4cf5cb458fa9219f828f65f Mon Sep 17 00:00:00 2001 From: Olatunde Alex-Oni Date: Wed, 14 Jan 2026 14:00:30 +0100 Subject: [PATCH 1/3] CORE-1540 use nomad pack version 0.4.1 --- .github/workflows/nomad-pack.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/nomad-pack.yml b/.github/workflows/nomad-pack.yml index 6d4e2a9..78248a6 100644 --- a/.github/workflows/nomad-pack.yml +++ b/.github/workflows/nomad-pack.yml @@ -70,7 +70,7 @@ on: nomad_pack_version: required: false type: string - default: "0.1.1" + default: "0.4.1" description: Hashicorp Nomad Pack version to use os: description: "OS version to run the workflow on. If not provided, defaults to 'blacksmith-4vcpu-ubuntu-2204'" From 35e2d60fec848ed6f7e5fd3067b45c1884b75ada Mon Sep 17 00:00:00 2001 From: Olatunde Alex-Oni Date: Wed, 14 Jan 2026 14:07:50 +0100 Subject: [PATCH 2/3] CORE-1540 allow add --ignore-unused-var nomad-pack option --- .github/workflows/nomad-pack.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/nomad-pack.yml b/.github/workflows/nomad-pack.yml index 78248a6..8f33752 100644 --- a/.github/workflows/nomad-pack.yml +++ b/.github/workflows/nomad-pack.yml @@ -192,7 +192,7 @@ jobs: --var='cluster=${{ inputs.cluster }}' \ --var='environment=${{ inputs.environment }}' \ --var='code_version=${{ inputs.code_version || steps.checkout.outputs.commit }}' \ - --var-file=${{ inputs.variables_file_name }} \ + --var-file=${{ inputs.variables_file_name }} -ignore-missing-vars \ --name=${{ inputs.name }} --registry=remerge-pack \ | tail -n +2 | nomad job validate - @@ -211,7 +211,7 @@ jobs: --var='cluster=${{ inputs.cluster }}' \ --var='environment=${{ inputs.environment }}' \ --var='code_version=${{ inputs.code_version || steps.checkout.outputs.commit }}' \ - --var-file=${{ inputs.variables_file_name }} \ + --var-file=${{ inputs.variables_file_name }} -ignore-missing-vars \ --name=${{ inputs.name }} --registry=remerge-pack \ --exit-code-makes-changes=0) From 100c51db8e5ddeaa10c5b010ace5e144dcf9afc6 Mon Sep 17 00:00:00 2001 From: Olatunde Alex-Oni Date: Wed, 14 Jan 2026 14:28:34 +0100 Subject: [PATCH 3/3] CORE-1540 igmore missing vars in nomad-pack --- .github/workflows/nomad-pack.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/nomad-pack.yml b/.github/workflows/nomad-pack.yml index 8f33752..b429d44 100644 --- a/.github/workflows/nomad-pack.yml +++ b/.github/workflows/nomad-pack.yml @@ -192,7 +192,7 @@ jobs: --var='cluster=${{ inputs.cluster }}' \ --var='environment=${{ inputs.environment }}' \ --var='code_version=${{ inputs.code_version || steps.checkout.outputs.commit }}' \ - --var-file=${{ inputs.variables_file_name }} -ignore-missing-vars \ + --var-file=${{ inputs.variables_file_name }} --ignore-missing-vars \ --name=${{ inputs.name }} --registry=remerge-pack \ | tail -n +2 | nomad job validate - @@ -211,7 +211,7 @@ jobs: --var='cluster=${{ inputs.cluster }}' \ --var='environment=${{ inputs.environment }}' \ --var='code_version=${{ inputs.code_version || steps.checkout.outputs.commit }}' \ - --var-file=${{ inputs.variables_file_name }} -ignore-missing-vars \ + --var-file=${{ inputs.variables_file_name }} --ignore-missing-vars \ --name=${{ inputs.name }} --registry=remerge-pack \ --exit-code-makes-changes=0)