We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7280716 commit 24d3d35Copy full SHA for 24d3d35
release.json
@@ -1,6 +1,7 @@
1
{
2
"mongodb-kubernetes-operator": "0.5.0",
3
"version-upgrade-hook": "1.0.2",
4
+ "readiness-probe": "1.0.1",
5
"agent": {
6
"version": "10.27.0.6772-1",
7
"tools_version": "100.2.0"
scripts/dev/dockerfiles/Dockerfile.readiness
@@ -0,0 +1,13 @@
+FROM golang:1.15-alpine as builder
+
+COPY ./cmd/readiness /build/
+COPY ./pkg /build/pkg
+COPY ./api /build/api
+COPY ./go.mod /build/
8
+WORKDIR /build
9
+RUN CGO_ENABLED=0 GOOS=linux GOARCH=386 go build -a -i -o readinessprobe .
10
11
+FROM busybox
12
13
+COPY --from=builder /build/readinessprobe /probes/
0 commit comments