diff --git a/pkg/reconciler/openshift/tektonaddon/testdata/test-console-cli-expected.yaml b/pkg/reconciler/openshift/tektonaddon/testdata/test-console-cli-expected.yaml index 139503e703..736b2c28de 100644 --- a/pkg/reconciler/openshift/tektonaddon/testdata/test-console-cli-expected.yaml +++ b/pkg/reconciler/openshift/tektonaddon/testdata/test-console-cli-expected.yaml @@ -18,7 +18,7 @@ spec: text: Download tkn and tkn-pac for Mac x86_64 - href: https://testserver.com/tkn/tkn-macos-arm64.tar.gz text: Download tkn and tkn-pac for Mac ARM 64 - - href: https://testserver.com/tkn/tkn-windows-amd64.tar.gz + - href: https://testserver.com/tkn/tkn-windows-amd64.zip text: Download tkn and tkn-pac for Windows x86_64 - - href: https://testserver.com/tkn/tkn-windows-arm64.tar.gz + - href: https://testserver.com/tkn/tkn-windows-arm64.zip text: Download tkn and tkn-pac for Windows ARM 64 diff --git a/pkg/reconciler/openshift/tektonaddon/transformer.go b/pkg/reconciler/openshift/tektonaddon/transformer.go index a63d501617..cad56101b7 100644 --- a/pkg/reconciler/openshift/tektonaddon/transformer.go +++ b/pkg/reconciler/openshift/tektonaddon/transformer.go @@ -77,8 +77,8 @@ func getlinks(baseURL string) []console.CLIDownloadLink { {"IBM Z", "tkn/tkn-linux-s390x.tar.gz"}, {"Mac x86_64", "tkn/tkn-macos-amd64.tar.gz"}, {"Mac ARM 64", "tkn/tkn-macos-arm64.tar.gz"}, - {"Windows x86_64", "tkn/tkn-windows-amd64.tar.gz"}, - {"Windows ARM 64", "tkn/tkn-windows-arm64.tar.gz"}, + {"Windows x86_64", "tkn/tkn-windows-amd64.zip"}, + {"Windows ARM 64", "tkn/tkn-windows-arm64.zip"}, } links := []console.CLIDownloadLink{} for _, platformURL := range platformURLs {