From cf0d21ba1d9e6491a9b534d8ba386feedbf87d2b Mon Sep 17 00:00:00 2001 From: mrxinwang Date: Wed, 19 Feb 2020 10:42:31 +0800 Subject: [PATCH] Add missing GRPC health probe for arm64 to db-manager Signed-off-by: Henry Wang --- cmd/db-manager/v1alpha3/Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cmd/db-manager/v1alpha3/Dockerfile b/cmd/db-manager/v1alpha3/Dockerfile index 7ae19060ee8..3dc51a61c45 100644 --- a/cmd/db-manager/v1alpha3/Dockerfile +++ b/cmd/db-manager/v1alpha3/Dockerfile @@ -11,6 +11,8 @@ RUN if [ "$(uname -m)" = "ppc64le" ] || [ "$(uname -m)" = "aarch64" ]; then \ RUN GRPC_HEALTH_PROBE_VERSION=v0.3.1 && \ 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; \ + elif [ "$(uname -m)" = "aarch64" ]; 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-arm64; \ else \ wget -qO/bin/grpc_health_probe https://github.com/grpc-ecosystem/grpc-health-probe/releases/download/${GRPC_HEALTH_PROBE_VERSION}/grpc_health_probe-linux-amd64; \ fi && \