Skip to content

Commit

Permalink
Merge pull request #146 from rosskirkpat/bump-wins
Browse files Browse the repository at this point in the history
  • Loading branch information
kinarashah authored Mar 18, 2022
2 parents 5fda490 + ce64a4d commit 112c23f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ RUN apk -U --no-cache add curl wget ca-certificates tar sysstat acl\
&& apk del curl

RUN mkdir -p /opt/cni/bin
RUN wget -q -O - https://github.com/containernetworking/cni/releases/download/v0.4.0/cni-${ARCH}-v0.4.0.tgz | tar xzf - -C /tmp
RUN wget -q -O - https://github.com/containernetworking/plugins/releases/download/v0.9.1/cni-plugins-linux-${ARCH}-v0.9.1.tgz | tar xzf - -C /tmp
RUN wget -q -O /tmp/portmap https://github.com/rancher/plugins/releases/download/v1.9.1-rancher1/portmap-${ARCH}

ENV ETCD_URL=https://github.com/etcd-io/etcd/releases/download/v3.4.15/etcd-v3.4.15-linux-${ARCH}.tar.gz
Expand Down
2 changes: 1 addition & 1 deletion package/Dockerfile.windows
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ RUN $URL = 'https://github.com/microsoft/K8s-Storage-Plugins/releases/download/V
\
Write-Host 'Complete.'
# download wins
RUN $URL = 'https://github.com/rancher/wins/releases/download/v0.1.1/wins.exe'; \
RUN $URL = 'https://github.com/rancher/wins/releases/download/v0.2.1/wins.exe'; \
\
Write-Host ('Downloading wins from {0} ...' -f $URL); \
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; \
Expand Down
2 changes: 1 addition & 1 deletion package/Dockerfile.windows.20H2
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ RUN $URL = 'https://github.com/microsoft/K8s-Storage-Plugins/releases/download/V
\
Write-Host 'Complete.'
# download wins
RUN $URL = 'https://github.com/rancher/wins/releases/download/v0.1.1/wins.exe'; \
RUN $URL = 'https://github.com/rancher/wins/releases/download/v0.2.1/wins.exe'; \
\
Write-Host ('Downloading wins from {0} ...' -f $URL); \
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; \
Expand Down
2 changes: 1 addition & 1 deletion windows/sidecar.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ if ($networkConfigObj)

$winsArgs = $($flannelArgs -join ' ')
Log-Info "Start flanneld with: $winsArgs"
wins.exe cli prc run --path "$prefixPath\opt\bin\flanneld.exe" --exposes ("UDP:{0}" -f $port) --args "$winsArgs" --envs "NODE_NAME=$nodeName"
wins.exe cli prc run --path "$prefixPath\opt\bin\flanneld.exe" --exposes ("UDP:{0}" -f $port) --envs "NODE_NAME=$nodeName" --args "$winsArgs"
}
}

Expand Down

0 comments on commit 112c23f

Please sign in to comment.