-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5691 from karlkfi/karl-cockroachdb-pin-version
Pin kustomize image in cockroachdb example
- Loading branch information
Showing
2 changed files
with
23 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,27 @@ | ||
# Copyright 2019 The Kubernetes Authors. | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
.PHONY: image | ||
# This example uses a pinned version of the kustomize image, as an example of | ||
# what users should do downstream, to ensure supply chain security. | ||
# | ||
# Whenever KUSTOMIZE_IMAGE_TAG & KUSTOMIZE_IMAGE_SHA are updated, | ||
# EXAMPLE_IMAGE_TAG should also be updated to a new patch version. | ||
# For reference, see | ||
# https://github.com/kubernetes/k8s.io/blob/main/registry.k8s.io/images/k8s-staging-kustomize/images.yaml | ||
EXAMPLE_IMAGE_TAG=v0.1.1 | ||
KUSTOMIZE_IMAGE_TAG=v5.4.1 | ||
KUSTOMIZE_IMAGE_SHA=sha256:7492c35d6fbe64e05100009915167a37b285ca7391067fa0c7bec9a7d1856882 | ||
|
||
all: | ||
true | ||
|
||
image: | ||
docker build image -t gcr.io/kustomize-functions/example-cockroachdb:v0.1.0 | ||
docker push gcr.io/kustomize-functions/example-cockroachdb:v0.1.0 | ||
.PHONY: image-build | ||
image-build: | ||
docker build image \ | ||
--build-arg "KUSTOMIZE_IMAGE_TAG=$(KUSTOMIZE_IMAGE_TAG)" \ | ||
--build-arg "KUSTOMIZE_IMAGE_SHA=$(KUSTOMIZE_IMAGE_SHA)" \ | ||
-t gcr.io/kustomize-functions/example-cockroachdb:$(EXAMPLE_IMAGE_TAG) | ||
|
||
.PHONY: image | ||
image: image-build | ||
docker push gcr.io/kustomize-functions/example-cockroachdb:$(EXAMPLE_IMAGE_TAG) |
8 changes: 3 additions & 5 deletions
8
functions/examples/template-heredoc-cockroachdb/image/Dockerfile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,10 @@ | ||
# Copyright 2019 The Kubernetes Authors. | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
FROM golang:1.21-bullseye | ||
ENV CGO_ENABLED=0 | ||
RUN go get -v sigs.k8s.io/kustomize/kustomize | ||
ARG KUSTOMIZE_IMAGE_TAG | ||
ARG KUSTOMIZE_IMAGE_SHA | ||
|
||
FROM alpine:latest | ||
FROM registry.k8s.io/kustomize/kustomize:${KUSTOMIZE_IMAGE_TAG}@${KUSTOMIZE_IMAGE_SHA} | ||
RUN apk add --no-cache bash | ||
COPY --from=0 /go/bin/kustomize /usr/local/bin | ||
COPY cockroachdb-template.sh /usr/local/bin/config-function | ||
CMD ["config-function"] |