From b1e41333b28b066d6d994ec0fcd0c38b35e19821 Mon Sep 17 00:00:00 2001 From: Transmitt0r Date: Wed, 24 Aug 2022 12:21:12 +0200 Subject: [PATCH] Add baseimage for windows 1809 Prior to this example it was not possible to easily use tekton on AKS with a windows nodepool. Adding nanoserver:1809 with OS Version 10.0.17763.3287 allows nodes running windows 1809 to be used for task execution. --- tekton/publish.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/tekton/publish.yaml b/tekton/publish.yaml index 8556f1757d6..6f2649d7ca2 100644 --- a/tekton/publish.yaml +++ b/tekton/publish.yaml @@ -96,6 +96,7 @@ spec: # Combine Distroless with a Windows base image, used for the entrypoint image. COMBINED_BASE_IMAGE=$(go run ./vendor/github.com/tektoncd/plumbing/cmd/combine/main.go \ distroless.dev/static \ + mcr.microsoft.com/windows/nanoserver:1809 \ mcr.microsoft.com/windows/nanoserver:ltsc2019 \ mcr.microsoft.com/windows/nanoserver:ltsc2022 \ ${CONTAINER_REGISTRY}/$(params.package)/combined-base-image:latest)