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:
parent
b4493b2e75
commit
c14108764b
|
|
@ -16,7 +16,7 @@ RUN make build-dfget && make install-dfget
|
||||||
|
|
||||||
FROM ${BASE_IMAGE} AS health
|
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 \
|
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; \
|
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; \
|
||||||
|
|
|
||||||
|
|
@ -30,7 +30,7 @@ RUN make build-manager-server && make install-manager
|
||||||
|
|
||||||
FROM ${BASE_IMAGE} AS health
|
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 \
|
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; \
|
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; \
|
||||||
|
|
|
||||||
|
|
@ -16,7 +16,7 @@ RUN make build-scheduler && make install-scheduler
|
||||||
|
|
||||||
FROM ${BASE_IMAGE} AS health
|
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 \
|
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; \
|
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; \
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue