From 3b6d3864a0fa66495faa6b9803078710d1013398 Mon Sep 17 00:00:00 2001 From: Ahmet Alp Balkan Date: Tue, 9 Oct 2018 15:54:55 -0700 Subject: [PATCH] grpc: bump health-probe to v0.2.0 (#71) Signed-off-by: Ahmet Alp Balkan --- src/adservice/Dockerfile | 2 +- src/cartservice/Dockerfile | 2 +- src/checkoutservice/Dockerfile | 2 +- src/currencyservice/Dockerfile | 4 ++-- src/emailservice/Dockerfile | 2 +- src/paymentservice/Dockerfile | 2 +- src/productcatalogservice/Dockerfile | 2 +- src/recommendationservice/Dockerfile | 2 +- src/shippingservice/Dockerfile | 2 +- 9 files changed, 10 insertions(+), 10 deletions(-) diff --git a/src/adservice/Dockerfile b/src/adservice/Dockerfile index 78b0452..7b41366 100644 --- a/src/adservice/Dockerfile +++ b/src/adservice/Dockerfile @@ -11,7 +11,7 @@ RUN ./gradlew installDist FROM openjdk:8-alpine -RUN GRPC_HEALTH_PROBE_VERSION=v0.1.0-alpha.1 && \ +RUN GRPC_HEALTH_PROBE_VERSION=v0.2.0 && \ 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 && \ chmod +x /bin/grpc_health_probe diff --git a/src/cartservice/Dockerfile b/src/cartservice/Dockerfile index eae7f06..ad2b1c3 100644 --- a/src/cartservice/Dockerfile +++ b/src/cartservice/Dockerfile @@ -8,7 +8,7 @@ RUN dotnet restore && \ # cartservice FROM alpine:3.8 -RUN GRPC_HEALTH_PROBE_VERSION=v0.1.0-alpha.1 && \ +RUN GRPC_HEALTH_PROBE_VERSION=v0.2.0 && \ 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 && \ chmod +x /bin/grpc_health_probe diff --git a/src/checkoutservice/Dockerfile b/src/checkoutservice/Dockerfile index 4f6e616..6099109 100644 --- a/src/checkoutservice/Dockerfile +++ b/src/checkoutservice/Dockerfile @@ -15,7 +15,7 @@ RUN go build -gcflags='-N -l' -o /checkoutservice . FROM alpine as release RUN apk add --no-cache ca-certificates -RUN GRPC_HEALTH_PROBE_VERSION=v0.1.0-alpha.1 && \ +RUN GRPC_HEALTH_PROBE_VERSION=v0.2.0 && \ 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 && \ chmod +x /bin/grpc_health_probe COPY --from=builder /checkoutservice /checkoutservice diff --git a/src/currencyservice/Dockerfile b/src/currencyservice/Dockerfile index 7529674..1e60cab 100644 --- a/src/currencyservice/Dockerfile +++ b/src/currencyservice/Dockerfile @@ -17,7 +17,7 @@ RUN npm install --only=production FROM base -RUN GRPC_HEALTH_PROBE_VERSION=v0.1.0-alpha.1 && \ +RUN GRPC_HEALTH_PROBE_VERSION=v0.2.0 && \ 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 && \ chmod +x /bin/grpc_health_probe @@ -29,4 +29,4 @@ COPY . . EXPOSE 7000 -ENTRYPOINT [ "node", "server.js" ] \ No newline at end of file +ENTRYPOINT [ "node", "server.js" ] diff --git a/src/emailservice/Dockerfile b/src/emailservice/Dockerfile index 5a1bb22..7aa7ec1 100644 --- a/src/emailservice/Dockerfile +++ b/src/emailservice/Dockerfile @@ -26,7 +26,7 @@ FROM base as final ENV PYTHONUNBUFFERED=1 # Download the grpc health probe -RUN GRPC_HEALTH_PROBE_VERSION=v0.1.0-alpha.1 && \ +RUN GRPC_HEALTH_PROBE_VERSION=v0.2.0 && \ 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 && \ chmod +x /bin/grpc_health_probe diff --git a/src/paymentservice/Dockerfile b/src/paymentservice/Dockerfile index 5785d35..722bb47 100644 --- a/src/paymentservice/Dockerfile +++ b/src/paymentservice/Dockerfile @@ -17,7 +17,7 @@ RUN npm install --only=production FROM base -RUN GRPC_HEALTH_PROBE_VERSION=v0.1.0-alpha.1 && \ +RUN GRPC_HEALTH_PROBE_VERSION=v0.2.0 && \ 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 && \ chmod +x /bin/grpc_health_probe diff --git a/src/productcatalogservice/Dockerfile b/src/productcatalogservice/Dockerfile index f941605..82deb04 100644 --- a/src/productcatalogservice/Dockerfile +++ b/src/productcatalogservice/Dockerfile @@ -15,7 +15,7 @@ RUN go build -o /productcatalogservice . FROM alpine AS release RUN apk add --no-cache ca-certificates -RUN GRPC_HEALTH_PROBE_VERSION=v0.1.0-alpha.1 && \ +RUN GRPC_HEALTH_PROBE_VERSION=v0.2.0 && \ 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 && \ chmod +x /bin/grpc_health_probe WORKDIR /productcatalogservice diff --git a/src/recommendationservice/Dockerfile b/src/recommendationservice/Dockerfile index 881f12a..3faff32 100644 --- a/src/recommendationservice/Dockerfile +++ b/src/recommendationservice/Dockerfile @@ -6,7 +6,7 @@ RUN apt-get update -qqy && \ ENV PYTHONUNBUFFERED=0 # download the grpc health probe -RUN GRPC_HEALTH_PROBE_VERSION=v0.1.0-alpha.1 && \ +RUN GRPC_HEALTH_PROBE_VERSION=v0.2.0 && \ 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 && \ chmod +x /bin/grpc_health_probe diff --git a/src/shippingservice/Dockerfile b/src/shippingservice/Dockerfile index ef44642..2b80a7e 100644 --- a/src/shippingservice/Dockerfile +++ b/src/shippingservice/Dockerfile @@ -14,7 +14,7 @@ RUN go install . FROM alpine as release RUN apk add --no-cache ca-certificates -RUN GRPC_HEALTH_PROBE_VERSION=v0.1.0-alpha.1 && \ +RUN GRPC_HEALTH_PROBE_VERSION=v0.2.0 && \ 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 && \ chmod +x /bin/grpc_health_probe COPY --from=builder /go/bin/shippingservice /shippingservice