Skip to content

Commit

Permalink
test: fix windows e2e test failure
Browse files Browse the repository at this point in the history
  • Loading branch information
andyzhangx committed Aug 12, 2024
1 parent 93899d0 commit b0f343f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ VERSION ?= latest
# Use a custom version for E2E tests if we are testing in CI
ifdef CI
ifndef PUBLISH
ifdef TEST_WINDOWS
override IMAGE_VERSION := e2e-win-$(GIT_COMMIT)
ifdef WINDOWS_SERVER_VERSION
override IMAGE_VERSION := e2e-$(WINDOWS_SERVER_VERSION)-$(GIT_COMMIT)
endif
ifdef EXTERNAL_E2E_TEST
override IMAGE_VERSION := e2e-external-$(GIT_COMMIT)
Expand Down
4 changes: 2 additions & 2 deletions cmd/smbplugin/Dockerfile.Windows
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@
# limitations under the License.

# these arguments come from BUILD_PLATFORMS used in release-tools
ARG ADDON_IMAGE=servercore:1809@sha256:6fdf140282a2f809dae9b13fe441635867f0a27c33a438771673b8da8f3348a4
ARG ADDON_IMAGE=servercore:1809
ARG BASE_IMAGE=nanoserver:1809
ARG REGISTRY=mcr.microsoft.com/windows

FROM ${REGISTRY}/${ADDON_IMAGE} as addon
FROM ${REGISTRY}/${ADDON_IMAGE} AS addon
FROM ${REGISTRY}/${BASE_IMAGE}
LABEL description="CSI SMB plugin"

Expand Down

0 comments on commit b0f343f

Please sign in to comment.