Skip to content

Commit 77108cf

Browse files
committed
update k8s e2e
1 parent 34f624a commit 77108cf

File tree

4 files changed

+5
-8
lines changed

4 files changed

+5
-8
lines changed

.pipelines/cni/k8s-e2e/k8s-e2e-job-template.yaml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,8 @@ jobs:
2323
set -e
2424
make -C ./hack/aks set-kubeconf AZCLI=az CLUSTER=${{ parameters.clusterName }}
2525
26-
# sig-release provides test suite tarball(s) per k8s release. Just need to provide k8s version "v1.xx.xx"
27-
# pulling k8s version from AKS.
28-
eval k8sVersion="v"$( az aks show -g ${{ parameters.clusterName }} -n ${{ parameters.clusterName }} --query "currentKubernetesVersion")
29-
echo $k8sVersion
30-
curl -L https://dl.k8s.io/$k8sVersion/kubernetes-test-linux-amd64.tar.gz -o ./kubernetes-test-linux-amd64.tar.gz
26+
# Final upstream patch for k8s 1.27
27+
curl -L https://dl.k8s.io/v1.27.16/kubernetes-test-linux-amd64.tar.gz -o ./kubernetes-test-linux-amd64.tar.gz
3128
3229
# https://github.com/kubernetes/sig-release/blob/master/release-engineering/artifacts.md#content-of-kubernetes-test-system-archtargz-on-example-of-kubernetes-test-linux-amd64targz-directories-removed-from-list
3330
# explictly unzip and strip directories from ginkgo and e2e.test

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -677,7 +677,7 @@ LINT_PKG ?= .
677677
GOLANGCI_LINT = go tool golangci-lint
678678

679679
lint: ## Fast lint vs default branch showing only new issues.
680-
GOGC=20 $(GOLANGCI_LINT) run --new-from-rev release/v1.4 --timeout 10m -v $(LINT_PKG)/...
680+
GOGC=20 $(GOLANGCI_LINT) run --new-from-rev release/v1.4 --config=.golangci.yml --timeout 10m -v $(LINT_PKG)/...
681681

682682
lint-all: ## Lint the current branch in entirety.
683683
GOGC=20 $(GOLANGCI_LINT) run -v $(LINT_PKG)/...

dropgz/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/Azure/azure-container-networking/dropgz
22

3-
go 1.23
3+
go 1.24
44

55
require (
66
github.com/jsternberg/zap-logfmt v1.3.0

zapai/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/Azure/azure-container-networking/zapai
22

3-
go 1.23
3+
go 1.24
44

55
require (
66
github.com/jsternberg/zap-logfmt v1.3.0

0 commit comments

Comments
 (0)