Skip to content

Commit f0440f3

Browse files
fix: [WIN-NPM] revert breaking change to .exe filename (#1843)
revert .exe filename
1 parent d7e4f6c commit f0440f3

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

npm/examples/windows/azure-npm.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,14 +83,14 @@ spec:
8383
hostNetwork: true
8484
containers:
8585
- name: azure-npm
86-
image: mcr.microsoft.com/containernetworking/azure-npm:v1.4.29
86+
image: mcr.microsoft.com/containernetworking/azure-npm:v1.4.45
8787
command: ["powershell.exe"]
8888
args:
8989
[
9090
'.\setkubeconfigpath.ps1',
9191
";",
9292
"powershell.exe",
93-
'.\azure-npm.exe',
93+
'.\npm.exe',
9494
"start",
9595
'--kubeconfig=.\kubeconfig',
9696
]

npm/windows.Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ FROM mcr.microsoft.com/windows/servercore:${OS_VERSION}
1111
COPY --from=builder /usr/local/src/npm/examples/windows/kubeconfigtemplate.yaml kubeconfigtemplate.yaml
1212
COPY --from=builder /usr/local/src/npm/examples/windows/setkubeconfigpath.ps1 setkubeconfigpath.ps1
1313
COPY --from=builder /usr/local/src/npm/examples/windows/setkubeconfigpath-capz.ps1 setkubeconfigpath-capz.ps1
14-
COPY --from=builder /usr/local/bin/azure-npm.exe azure-npm.exe
15-
CMD ["azure-npm.exe", "start" "--kubeconfig=.\\kubeconfig"]
14+
COPY --from=builder /usr/local/bin/azure-npm.exe npm.exe
15+
CMD ["npm.exe", "start" "--kubeconfig=.\\kubeconfig"]

0 commit comments

Comments
 (0)