Skip to content

Commit 6606ca0

Browse files
GRPC_HEALTH_PROBE_VERSION=v0.4.11 (GoogleCloudPlatform#803)
1 parent 6bbe8cc commit 6606ca0

File tree

10 files changed

+10
-10
lines changed

10 files changed

+10
-10
lines changed

src/adservice/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ RUN mkdir -p /opt/cprof && \
3636
| tar xzv -C /opt/cprof && \
3737
rm -rf profiler_java_agent.tar.gz
3838

39-
RUN GRPC_HEALTH_PROBE_VERSION=v0.4.6 && \
39+
RUN GRPC_HEALTH_PROBE_VERSION=v0.4.11 && \
4040
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 && \
4141
chmod +x /bin/grpc_health_probe
4242

src/cartservice/src/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ RUN dotnet publish cartservice.csproj -p:PublishSingleFile=true -r linux-musl-x6
2222

2323
# https://mcr.microsoft.com/v2/dotnet/runtime-deps/tags/list
2424
FROM mcr.microsoft.com/dotnet/runtime-deps:6.0.3-alpine3.14-amd64
25-
RUN GRPC_HEALTH_PROBE_VERSION=v0.4.6 && \
25+
RUN GRPC_HEALTH_PROBE_VERSION=v0.4.11 && \
2626
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 && \
2727
chmod +x /bin/grpc_health_probe
2828
WORKDIR /app

src/cartservice/src/Dockerfile.debug

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ FROM mcr.microsoft.com/dotnet/aspnet:6.0 AS final
2626
# Installing procps on the container to enable debugging of .NET Core
2727
RUN apt-get update \
2828
&& apt-get install -y unzip procps wget
29-
RUN GRPC_HEALTH_PROBE_VERSION=v0.4.6 && \
29+
RUN GRPC_HEALTH_PROBE_VERSION=v0.4.11 && \
3030
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 && \
3131
chmod +x /bin/grpc_health_probe
3232
WORKDIR /app

src/checkoutservice/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ RUN go build -gcflags="${SKAFFOLD_GO_GCFLAGS}" -o /checkoutservice .
2929

3030
FROM alpine as release
3131
RUN apk add --no-cache ca-certificates
32-
RUN GRPC_HEALTH_PROBE_VERSION=v0.4.6 && \
32+
RUN GRPC_HEALTH_PROBE_VERSION=v0.4.11 && \
3333
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 && \
3434
chmod +x /bin/grpc_health_probe
3535
WORKDIR /src

src/currencyservice/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ RUN npm install --only=production
3131

3232
FROM base
3333

34-
RUN GRPC_HEALTH_PROBE_VERSION=v0.4.6 && \
34+
RUN GRPC_HEALTH_PROBE_VERSION=v0.4.11 && \
3535
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 && \
3636
chmod +x /bin/grpc_health_probe
3737

src/emailservice/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ RUN apt-get -qq update \
3636
wget
3737

3838
# Download the grpc health probe
39-
RUN GRPC_HEALTH_PROBE_VERSION=v0.4.6 && \
39+
RUN GRPC_HEALTH_PROBE_VERSION=v0.4.11 && \
4040
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 && \
4141
chmod +x /bin/grpc_health_probe
4242

src/paymentservice/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ RUN npm install --only=production
3131

3232
FROM base
3333

34-
RUN GRPC_HEALTH_PROBE_VERSION=v0.4.6 && \
34+
RUN GRPC_HEALTH_PROBE_VERSION=v0.4.11 && \
3535
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 && \
3636
chmod +x /bin/grpc_health_probe
3737

src/productcatalogservice/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ RUN go build -gcflags="${SKAFFOLD_GO_GCFLAGS}" -o /productcatalogservice .
2828

2929
FROM alpine AS release
3030
RUN apk add --no-cache ca-certificates
31-
RUN GRPC_HEALTH_PROBE_VERSION=v0.4.6 && \
31+
RUN GRPC_HEALTH_PROBE_VERSION=v0.4.11 && \
3232
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 && \
3333
chmod +x /bin/grpc_health_probe
3434
WORKDIR /src

src/recommendationservice/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ RUN apt-get update -qqy && \
2020
ENV PYTHONUNBUFFERED=0
2121

2222
# download the grpc health probe
23-
RUN GRPC_HEALTH_PROBE_VERSION=v0.4.6 && \
23+
RUN GRPC_HEALTH_PROBE_VERSION=v0.4.11 && \
2424
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 && \
2525
chmod +x /bin/grpc_health_probe
2626

src/shippingservice/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ RUN go build -gcflags="${SKAFFOLD_GO_GCFLAGS}" -o /go/bin/shippingservice .
2828

2929
FROM alpine as release
3030
RUN apk add --no-cache ca-certificates
31-
RUN GRPC_HEALTH_PROBE_VERSION=v0.4.6 && \
31+
RUN GRPC_HEALTH_PROBE_VERSION=v0.4.11 && \
3232
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 && \
3333
chmod +x /bin/grpc_health_probe
3434
WORKDIR /src

0 commit comments

Comments
 (0)