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

🌱 Update to syself-installimage 1.0.5 #1208

Merged
merged 1 commit into from
Mar 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion Tiltfile
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ def caph():

# copy things from data directory to .tiltbuild
if not os.path.exists('.tiltbuild/installimage.tgz'):
local("cp data/hetzner-installimage-v1.0.4.tgz .tiltbuild/installimage.tgz")
local("cp data/hetzner-installimage-v1.0.5.tgz .tiltbuild/installimage.tgz")

# Set up a local_resource build of the provider's manager binary.

Expand Down
Binary file removed data/hetzner-installimage-v1.0.4.tgz
Binary file not shown.
Binary file added data/hetzner-installimage-v1.0.5.tgz
Binary file not shown.
2 changes: 1 addition & 1 deletion images/caph/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ RUN --mount=type=cache,target=/root/.cache --mount=type=cache,target=/go/pkg \

FROM --platform=${BUILDPLATFORM} gcr.io/distroless/static:nonroot
WORKDIR /
COPY data/hetzner-installimage-v1.0.4.tgz /installimage.tgz
COPY data/hetzner-installimage-v1.0.5.tgz /installimage.tgz
COPY --from=build /src/cluster-api-provider-hetzner/manager .
# Use uid of nonroot user (65532) because kubernetes expects numeric user when applying pod security policies
USER 65532
Expand Down