We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 21834c7 commit fe081e7Copy full SHA for fe081e7
.pipelines/swiftv2-long-running/template/long-running-pipeline-template.yaml
@@ -172,6 +172,20 @@ stages:
172
173
echo "==> Adding Go bin to PATH"
174
export PATH=$PATH:$(go env GOPATH)/bin
175
+
176
+ echo "==> Downloading Go dependencies"
177
+ go mod download
178
179
+ echo "==> Setting up kubeconfig for cluster aks-2"
180
+ az aks get-credentials \
181
+ --resource-group ${{ parameters.resourceGroupName }} \
182
+ --name aks-2 \
183
+ --file /tmp/aks-2.kubeconfig \
184
+ --overwrite-existing \
185
+ --admin
186
187
+ echo "==> Verifying cluster connectivity"
188
+ kubectl --kubeconfig /tmp/aks-2.kubeconfig get nodes
189
190
echo "==> Running datapath tests"
191
export RG=${{ parameters.resourceGroupName }}
0 commit comments