We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6798c4a commit 7bd3165Copy full SHA for 7bd3165
.github/workflows/ci.yml
@@ -197,7 +197,8 @@ jobs:
197
export SHELL=/bin/bash
198
export DOCKER_BUILDKIT=1
199
eval $(minikube -p minikube docker-env)
200
- 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 }}
201
+ 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}" .
202
docker images
203
- name: Start the operator
204
run: |
0 commit comments