From 0f284ea10af030544f852bafaa1d73f101c0a037 Mon Sep 17 00:00:00 2001 From: Sam Barker Date: Fri, 27 Sep 2024 10:30:31 +1200 Subject: [PATCH] [FlINK-36332] Default to okhttp if client not specified --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 19bc28428..874630a0d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -204,7 +204,8 @@ jobs: export SHELL=/bin/bash export DOCKER_BUILDKIT=1 eval $(minikube -p minikube docker-env) - docker build --progress=plain --no-cache -f ./Dockerfile -t flink-kubernetes-operator:ci-${{ matrix.http-client }}-latest --progress plain --build-arg HTTP_CLIENT=${{ matrix.http-client }} . + HTTP_CLIENT=${{ matrix.http-client }} + docker build --progress=plain --no-cache -f ./Dockerfile -t flink-kubernetes-operator:ci-${{ matrix.http-client }}-latest --progress plain --build-arg HTTP_CLIENT="${HTTP_CLIENT:-okhttp}" . docker images - name: Start the operator run: |