Skip to content
Merged
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
4 changes: 2 additions & 2 deletions .github/workflows/deploy-wiki.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
deploy-wiki:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why are we using a hash?

with:
submodules: true
- name: Install rsync
Expand All @@ -34,4 +34,4 @@ jobs:
git add .
git commit -m "$message"
git push


10 changes: 5 additions & 5 deletions .github/workflows/e2e-master.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]
python-version: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
with:
submodules: true
- name: Create Kind Cluster
uses: helm/kind-action@v1.14.0
uses: helm/kind-action@ef37e7f390d99f746eb8b610417061a60e82a6cc
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why are we using a hash here?

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

SHA hash is required, tag is not allowed anymore.

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I see. It's an org policy "Require actions to be pinned to a full-length commit SHA"

with:
cluster_name: kubernetes-python-e2e-master-${{ matrix.python-version }}
# The kind version to be used to spin the cluster up
Expand All @@ -28,9 +28,9 @@ jobs:
# Update the config here whenever a new client snapshot is performed
# This would eventually point to cluster with the latest Kubernetes version
# as we sync with Kubernetes upstream
config: .github/workflows/kind-configs/cluster-1.25.yaml
config: .github/workflows/kind-configs/cluster-1.35.yaml
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand Down
44 changes: 0 additions & 44 deletions .github/workflows/e2e-release-11.0.yaml

This file was deleted.

44 changes: 0 additions & 44 deletions .github/workflows/e2e-release-12.0.yaml

This file was deleted.

44 changes: 0 additions & 44 deletions .github/workflows/e2e-release-17.0.yaml

This file was deleted.

44 changes: 0 additions & 44 deletions .github/workflows/e2e-release-18.0.yaml

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,36 +1,36 @@
name: End to End Tests - release-26.0
name: End to End Tests - release-35.0

on:
push:
branches:
- release-26.0
- release-35.0
pull_request:
branches:
- release-26.0
- release-35.0

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8, 3.9]
python-version: [3.10, 3.11, 3.12]
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
with:
submodules: true
- name: Create Kind Cluster
uses: helm/kind-action@v1.14.0
uses: helm/kind-action@ef37e7f390d99f746eb8b610417061a60e82a6cc
with:
cluster_name: kubernetes-python-e2e-release-26.0-${{ matrix.python-version }}
cluster_name: kubernetes-python-e2e-release-35.0-${{ matrix.python-version }}
# The kind version to be used to spin the cluster up
# this needs to be updated whenever a new Kind version is released
version: v0.17.0
# Update the config here whenever a new client snapshot is performed
# This would eventually point to cluster with the latest Kubernetes version
# as we sync with Kubernetes upstream
config: .github/workflows/kind-configs/cluster-1.26.yaml
config: .github/workflows/kind-configs/cluster-1.35.yaml
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand Down
7 changes: 0 additions & 7 deletions .github/workflows/kind-configs/cluster-1.15.yaml

This file was deleted.

7 changes: 0 additions & 7 deletions .github/workflows/kind-configs/cluster-1.16.yaml

This file was deleted.

7 changes: 0 additions & 7 deletions .github/workflows/kind-configs/cluster-1.17.yaml

This file was deleted.

7 changes: 0 additions & 7 deletions .github/workflows/kind-configs/cluster-1.18.yaml

This file was deleted.

7 changes: 0 additions & 7 deletions .github/workflows/kind-configs/cluster-1.25.yaml

This file was deleted.

7 changes: 0 additions & 7 deletions .github/workflows/kind-configs/cluster-1.26.yaml

This file was deleted.

7 changes: 7 additions & 0 deletions .github/workflows/kind-configs/cluster-1.35.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
kind: Cluster
apiVersion: kind.x-k8s.io/v1alpha4
nodes:
- role: control-plane
image: kindest/node:v1.35.1@sha256:05d7bcdefbda08b4e038f644c4df690cdac3fba8b06f8289f30e10026720a1ab
- role: worker
image: kindest/node:v1.35.1@sha256:05d7bcdefbda08b4e038f644c4df690cdac3fba8b06f8289f30e10026720a1ab
10 changes: 5 additions & 5 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,17 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.10", "3.11", "3.12", "3.13", "3.14"]
python-version: ["3.11", "3.12", "3.13", "3.14"]
include:
- python-version: "3.9"
- python-version: "3.10"
use_coverage: 'coverage'

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
with:
submodules: true
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand All @@ -44,7 +44,7 @@ jobs:

- name: Upload coverage to Codecov
if: "matrix.use_coverage"
uses: codecov/codecov-action@v6
uses: codecov/codecov-action@57e3a136b779b570ffcdbf80b3bdc90e7fab3de2
with:
fail_ci_if_error: false
verbose: true