File tree Expand file tree Collapse file tree 2 files changed +9
-4
lines changed Expand file tree Collapse file tree 2 files changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -310,14 +310,15 @@ COPY --from=pkg-ipxe-amd64 /usr/libexec/snp.efi /amd64/snp.efi
310
310
COPY --from=pkg-ipxe-arm64 /usr/libexec/snp.efi /arm64/snp.efi
311
311
312
312
FROM scratch AS microsoft-secureboot-database
313
- ADD https://github.com/microsoft/secureboot_objects.git /
313
+ ARG MICROSOFT_SECUREBOOT_RELEASE
314
+ ADD https://github.com/microsoft/secureboot_objects.git#${MICROSOFT_SECUREBOOT_RELEASE}:PreSignedObjects /
314
315
315
316
FROM scratch AS microsoft-key-keys
316
- COPY --from=microsoft-secureboot-database /PreSignedObjects/ KEK/Certificates/*.der /kek/
317
+ COPY --from=microsoft-secureboot-database /KEK/Certificates/*.der /kek/
317
318
318
319
FROM scratch AS microsoft-db-keys
319
- COPY --from=microsoft-secureboot-database /PreSignedObjects/ DB/Certificates/MicCor*.der /db/
320
- COPY --from=microsoft-secureboot-database /PreSignedObjects/ DB/Certificates/microsoft*.der /db/
320
+ COPY --from=microsoft-secureboot-database /DB/Certificates/MicCor*.der /db/
321
+ COPY --from=microsoft-secureboot-database /DB/Certificates/microsoft*.der /db/
321
322
322
323
FROM --platform=${BUILDPLATFORM} scratch AS generate
323
324
COPY --from=proto-format-build /src/api /api/
Original file line number Diff line number Diff line change @@ -100,6 +100,9 @@ HELM_VERSION ?= v3.15.2
100
100
CLUSTERCTL_VERSION ?= 1.7.3
101
101
# renovate: datasource=github-releases depName=cilium/cilium-cli
102
102
CILIUM_CLI_VERSION ?= v0.16.11
103
+ # renovate: datasource=github-releases depName=microsoft/secureboot_objects
104
+ MICROSOFT_SECUREBOOT_RELEASE ?= v1.1.3
105
+
103
106
KUBECTL_URL ?= https://dl.k8s.io/release/$(KUBECTL_VERSION ) /bin/$(OPERATING_SYSTEM ) /amd64/kubectl
104
107
KUBESTR_URL ?= https://github.com/kastenhq/kubestr/releases/download/$(KUBESTR_VERSION ) /kubestr_$(subst v,,$(KUBESTR_VERSION ) ) _Linux_amd64.tar.gz
105
108
HELM_URL ?= https://get.helm.sh/helm-$(HELM_VERSION ) -linux-amd64.tar.gz
@@ -209,6 +212,7 @@ COMMON_ARGS += --build-arg=PKG_KERNEL=$(PKG_KERNEL)
209
212
COMMON_ARGS += --build-arg=PKG_TALOSCTL_CNI_BUNDLE_INSTALL=$(PKG_TALOSCTL_CNI_BUNDLE_INSTALL )
210
213
COMMON_ARGS += --build-arg=ABBREV_TAG=$(ABBREV_TAG )
211
214
COMMON_ARGS += --build-arg=ZSTD_COMPRESSION_LEVEL=$(ZSTD_COMPRESSION_LEVEL )
215
+ COMMON_ARGS += --build-arg=MICROSOFT_SECUREBOOT_RELEASE=$(MICROSOFT_SECUREBOOT_RELEASE )
212
216
213
217
CI_ARGS ?=
214
218
You can’t perform that action at this time.
0 commit comments