mirror of
https://github.com/kubernetes-sigs/descheduler.git
synced 2026-01-28 14:41:10 +01:00
descheduler v0.31: update e2e test versions
Signed-off-by: Amir Alavi <amiralavi7@gmail.com>
This commit is contained in:
2
.github/workflows/manifests.yaml
vendored
2
.github/workflows/manifests.yaml
vendored
@@ -7,7 +7,7 @@ jobs:
|
|||||||
deploy:
|
deploy:
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
k8s-version: ["v1.30.0"]
|
k8s-version: ["v1.31.0"]
|
||||||
descheduler-version: ["v0.30.0"]
|
descheduler-version: ["v0.30.0"]
|
||||||
descheduler-api: ["v1alpha2"]
|
descheduler-api: ["v1alpha2"]
|
||||||
manifest: ["deployment"]
|
manifest: ["deployment"]
|
||||||
|
|||||||
4
Makefile
4
Makefile
@@ -26,10 +26,10 @@ ARCHS = amd64 arm arm64
|
|||||||
|
|
||||||
LDFLAGS=-ldflags "-X ${LDFLAG_LOCATION}.version=${VERSION} -X ${LDFLAG_LOCATION}.buildDate=${BUILD} -X ${LDFLAG_LOCATION}.gitbranch=${BRANCH} -X ${LDFLAG_LOCATION}.gitsha1=${SHA1}"
|
LDFLAGS=-ldflags "-X ${LDFLAG_LOCATION}.version=${VERSION} -X ${LDFLAG_LOCATION}.buildDate=${BUILD} -X ${LDFLAG_LOCATION}.gitbranch=${BRANCH} -X ${LDFLAG_LOCATION}.gitsha1=${SHA1}"
|
||||||
|
|
||||||
GOLANGCI_VERSION := v1.59.1
|
GOLANGCI_VERSION := v1.60.3
|
||||||
HAS_GOLANGCI := $(shell ls _output/bin/golangci-lint 2> /dev/null)
|
HAS_GOLANGCI := $(shell ls _output/bin/golangci-lint 2> /dev/null)
|
||||||
|
|
||||||
GOFUMPT_VERSION := v0.4.0
|
GOFUMPT_VERSION := v0.7.0
|
||||||
HAS_GOFUMPT := $(shell command -v gofumpt 2> /dev/null)
|
HAS_GOFUMPT := $(shell command -v gofumpt 2> /dev/null)
|
||||||
|
|
||||||
GO_VERSION := $(shell (command -v jq > /dev/null && (go mod edit -json | jq -r .Go)) || (sed -En 's/^go (.*)$$/\1/p' go.mod))
|
GO_VERSION := $(shell (command -v jq > /dev/null && (go mod edit -json | jq -r .Go)) || (sed -En 's/^go (.*)$$/\1/p' go.mod))
|
||||||
|
|||||||
@@ -34,9 +34,9 @@ echo "DESCHEDULER_IMAGE: ${DESCHEDULER_IMAGE}"
|
|||||||
if [ -n "$KIND_E2E" ]; then
|
if [ -n "$KIND_E2E" ]; then
|
||||||
# If we did not set SKIP_INSTALL
|
# If we did not set SKIP_INSTALL
|
||||||
if [ -z "$SKIP_INSTALL" ]; then
|
if [ -z "$SKIP_INSTALL" ]; then
|
||||||
K8S_VERSION=${KUBERNETES_VERSION:-v1.30.0}
|
K8S_VERSION=${KUBERNETES_VERSION:-v1.31.0}
|
||||||
curl -Lo kubectl https://dl.k8s.io/release/${K8S_VERSION}/bin/linux/amd64/kubectl && chmod +x kubectl && mv kubectl /usr/local/bin/
|
curl -Lo kubectl https://dl.k8s.io/release/${K8S_VERSION}/bin/linux/amd64/kubectl && chmod +x kubectl && mv kubectl /usr/local/bin/
|
||||||
wget https://github.com/kubernetes-sigs/kind/releases/download/v0.20.0/kind-linux-amd64
|
wget https://github.com/kubernetes-sigs/kind/releases/download/v0.24.0/kind-linux-amd64
|
||||||
chmod +x kind-linux-amd64
|
chmod +x kind-linux-amd64
|
||||||
mv kind-linux-amd64 kind
|
mv kind-linux-amd64 kind
|
||||||
export PATH=$PATH:$PWD
|
export PATH=$PATH:$PWD
|
||||||
|
|||||||
Reference in New Issue
Block a user