fix: key/value format with whitespace separator should not be used (#3459)

Signed-off-by: Gaius <gaius.qi@gmail.com>
This commit is contained in:
Gaius 2024-08-26 11:43:43 +08:00 committed by GitHub
parent b4493b2e75
commit c14108764b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 3 additions and 3 deletions

View File

@ -16,7 +16,7 @@ RUN make build-dfget && make install-dfget
FROM ${BASE_IMAGE} AS health
ENV GRPC_HEALTH_PROBE_VERSION v0.4.24
ENV GRPC_HEALTH_PROBE_VERSION=v0.4.24
RUN if [ "$(uname -m)" = "ppc64le" ]; then \
wget -qO/bin/grpc_health_probe https://github.com/grpc-ecosystem/grpc-health-probe/releases/download/${GRPC_HEALTH_PROBE_VERSION}/grpc_health_probe-linux-ppc64le; \

View File

@ -30,7 +30,7 @@ RUN make build-manager-server && make install-manager
FROM ${BASE_IMAGE} AS health
ENV GRPC_HEALTH_PROBE_VERSION v0.4.24
ENV GRPC_HEALTH_PROBE_VERSION=v0.4.24
RUN if [ "$(uname -m)" = "ppc64le" ]; then \
wget -qO/bin/grpc_health_probe https://github.com/grpc-ecosystem/grpc-health-probe/releases/download/${GRPC_HEALTH_PROBE_VERSION}/grpc_health_probe-linux-ppc64le; \

View File

@ -16,7 +16,7 @@ RUN make build-scheduler && make install-scheduler
FROM ${BASE_IMAGE} AS health
ENV GRPC_HEALTH_PROBE_VERSION v0.4.24
ENV GRPC_HEALTH_PROBE_VERSION=v0.4.24
RUN if [ "$(uname -m)" = "ppc64le" ]; then \
wget -qO/bin/grpc_health_probe https://github.com/grpc-ecosystem/grpc-health-probe/releases/download/${GRPC_HEALTH_PROBE_VERSION}/grpc_health_probe-linux-ppc64le; \