-
Notifications
You must be signed in to change notification settings - Fork 268
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
rke2-runtime signing and manifests (#7089)
Signed-off-by: Brooks Newberry <[email protected]>
- Loading branch information
Showing
5 changed files
with
111 additions
and
24 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
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
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
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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
#!/usr/bin/env bash | ||
set -ex | ||
|
||
cd $(dirname $0)/.. | ||
|
||
source ./scripts/version.sh | ||
|
||
DOCKER_BUILDKIT=${DOCKER_BUILDKIT:-1} docker image build ${IID_FILE_FLAG} \ | ||
--sbom=true \ | ||
--attest type=provenance,mode=max \ | ||
--build-arg TAG=${VERSION} \ | ||
--build-arg KUBERNETES_VERSION=${KUBERNETES_VERSION} \ | ||
--build-arg MAJOR=${VERSION_MAJOR} \ | ||
--build-arg MINOR=${VERSION_MINOR} \ | ||
--build-arg CACHEBUST="$(date +%s%N)" \ | ||
--tag ${REPO}/${PROG}-runtime:${DOCKERIZED_VERSION}-windows-amd64 \ | ||
--target windows-runtime \ | ||
--file Dockerfile.windows \ | ||
--push \ | ||
. |
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