Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Regular Update 2023/07 #1060

Merged
merged 18 commits into from
Jul 31, 2023
2 changes: 1 addition & 1 deletion configmap-reload/BRANCH
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.8
0.11
4 changes: 2 additions & 2 deletions configmap-reload/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# Stage1: build from source
FROM quay.io/cybozu/golang:1.20-jammy AS build

ARG CONFIGMAP_RELOAD_VERSION=0.8.0
ARG CONFIGMAP_RELOAD_VERSION=0.11.1

# Workaround https://github.com/ksonnet/ksonnet/issues/298#issuecomment-360531855
ENV USER=root
Expand All @@ -13,7 +13,7 @@ WORKDIR /go/src/github.com/jimmidyson/configmap-reload
RUN curl -fsSL -o configmap-reload.tar.gz "https://github.com/jimmidyson/configmap-reload/archive/v${CONFIGMAP_RELOAD_VERSION}.tar.gz" \
&& tar -x -z --strip-components 1 -f configmap-reload.tar.gz \
&& rm -f configmap-reload.tar.gz \
&& CGO_ENABLED=0 go install -ldflags="-w -s" ./
&& CGO_ENABLED=0 go install --installsuffix cgo -ldflags="-w -s -extldflags '-static'" ./
Copy link
Contributor

@umezawatakeshi umezawatakeshi Jul 28, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This modification is not required on recent golang but I don't request change because the original Makefile is written so.


# Stage2: setup runtime container
FROM scratch
Expand Down
2 changes: 1 addition & 1 deletion configmap-reload/TAG
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.8.0.1
0.11.1.1