From 61bf53e6cfaf486e94128881baecd989d535bb7d Mon Sep 17 00:00:00 2001 From: Nick Larsen Date: Tue, 4 Aug 2026 19:06:51 +0200 Subject: [PATCH 1/4] chore(templated): Bump aks version --- tests/interu.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/interu.yaml b/tests/interu.yaml index 56bafbdd..a76ae213 100644 --- a/tests/interu.yaml +++ b/tests/interu.yaml @@ -1,7 +1,7 @@ --- runners: amd64: - platform: aks-1.32 + platform: aks-1.36 ttl: 6h node-groups: - name: default From 4776fd6dd15b1740181ca63d23734d395e243687 Mon Sep 17 00:00:00 2001 From: Nick Larsen Date: Tue, 4 Aug 2026 19:07:43 +0200 Subject: [PATCH 2/4] chore(templated): Use updated run-integration-test action with OTLP bearer auth --- .github/workflows/integration-test.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/integration-test.yml b/.github/workflows/integration-test.yml index de17f182..27f51efe 100644 --- a/.github/workflows/integration-test.yml +++ b/.github/workflows/integration-test.yml @@ -43,9 +43,10 @@ jobs: # TODO: Enable the scheduled runs which hard-code what profile to use - name: Run Integration Test id: test - uses: stackabletech/actions/run-integration-test@dc83bb926cc464f0f32454e934777116bd1c7768 # v0.16.3 + uses: stackabletech/actions/run-integration-test@e5f521489c1b6bdc047b8ad1bdd31d5c4a197bfb # vxxx with: replicated-api-token: ${{ secrets.REPLICATED_API_TOKEN }} + otlp-bearer-token: ${{ secrets.OTLP_BEARER_TOKEN }} test-mode-input: ${{ inputs.test-mode-input }} test-suite: ${{ inputs.test-suite }} test-mode: ${{ inputs.test-mode }} From cd885ae33471e69151bd7dcbbf64af5cd169afed Mon Sep 17 00:00:00 2001 From: Nick Larsen Date: Tue, 4 Aug 2026 19:15:02 +0200 Subject: [PATCH 3/4] chore(templated): Use latest --- .github/workflows/integration-test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/integration-test.yml b/.github/workflows/integration-test.yml index 27f51efe..9b14cae5 100644 --- a/.github/workflows/integration-test.yml +++ b/.github/workflows/integration-test.yml @@ -43,7 +43,7 @@ jobs: # TODO: Enable the scheduled runs which hard-code what profile to use - name: Run Integration Test id: test - uses: stackabletech/actions/run-integration-test@e5f521489c1b6bdc047b8ad1bdd31d5c4a197bfb # vxxx + uses: stackabletech/actions/run-integration-test@run-integration-test-otel # vxxx with: replicated-api-token: ${{ secrets.REPLICATED_API_TOKEN }} otlp-bearer-token: ${{ secrets.OTLP_BEARER_TOKEN }} From d69524c8de6b4ced5e3e0d565639b81ad2f734dc Mon Sep 17 00:00:00 2001 From: Nick Larsen Date: Tue, 4 Aug 2026 20:26:26 +0200 Subject: [PATCH 4/4] hmm, this is odd --- rust/operator-binary/src/main.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/rust/operator-binary/src/main.rs b/rust/operator-binary/src/main.rs index 1b9c6067..87ac496d 100644 --- a/rust/operator-binary/src/main.rs +++ b/rust/operator-binary/src/main.rs @@ -55,6 +55,8 @@ struct Opts { cmd: Command, } +// need a change to trigger an image build, else tests can't pull the image with the PR tag. + #[tokio::main] async fn main() -> anyhow::Result<()> { let opts = Opts::parse();