Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,13 @@ on:
pull_request:
push:
branches:
- '**'
- "**"

env:
PYTHON_VERSION: "3.12"
STERN_VERSION: "1.30.0"

jobs:

ruff:
runs-on: ubuntu-latest
steps:
Expand Down Expand Up @@ -58,8 +57,8 @@ jobs:
uses: medyagh/setup-minikube@v0.0.20
id: minikube
with:
minikube-version: 1.37.0
kubernetes-version: v1.34.0
minikube-version: 1.38.1
kubernetes-version: v1.35.1
cpus: max
memory: 4000m
- name: Start minikube's loadbalancer tunnel
Expand Down
10 changes: 5 additions & 5 deletions src/warnet/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -209,27 +209,27 @@ class AnnexMember(Enum):

# Kubectl binary
KUBECTL_BINARY_NAME = "kubectl"
KUBECTL_BLESSED_VERSION = "v1.31.1"
KUBECTL_BLESSED_VERSION = "v1.35.1"
KUBECTL_DOWNLOAD_URL_STUB = f"https://dl.k8s.io/release/{KUBECTL_BLESSED_VERSION}/bin"
KUBECTL_BLESSED_NAME_AND_CHECKSUMS = [
{
"system": "linux",
"arch": "amd64",
"checksum": "57b514a7facce4ee62c93b8dc21fda8cf62ef3fed22e44ffc9d167eab843b2ae",
"checksum": "36e2f4ac66259232341dd7866952d64a958846470f6a9a6a813b9117bd965207",
},
{
"system": "linux",
"arch": "arm64",
"checksum": "3af2451191e27ecd4ac46bb7f945f76b71e934d54604ca3ffc7fe6f5dd123edb",
"checksum": "706256e21a4e9192ee62d1a007ac0bfcff2b0b26e92cc7baad487a6a5d08ff82",
},
{
"system": "darwin",
"arch": "amd64",
"checksum": "4b86d3fb8dee8dd61f341572f1ba13c1030d493f4dc1b4831476f61f3cbb77d0",
"checksum": "07a04d82bc2de2f5d53dfd81f2109ca864f634a82b225257daa2f9c2db15ccef",
},
{
"system": "darwin",
"arch": "arm64",
"checksum": "08909b92e62004f4f1222dfd39214085383ea368bdd15c762939469c23484634",
"checksum": "2b000dded317319b1ebca19c2bc70f772c7aaa0e8962fae2d987ba04dd1a1b50",
},
]
Loading