Skip to content

Bump kr8s to 0.17 and Kubernetes supported versions #998

Bump kr8s to 0.17 and Kubernetes supported versions

Bump kr8s to 0.17 and Kubernetes supported versions #998

Workflow file for this run

name: "Operator"
on:
pull_request:
push:
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
lint-chart:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Lint Helm Chart
run: helm lint dask_kubernetes/operator/deployment/helm/dask-kubernetes-operator
- name: Install Pluto
uses: FairwindsOps/pluto/github-action@v5.11.1
- name: Check for deprecated APIs
run: helm template --include-crds dask-operator dask_kubernetes/operator/deployment/helm/dask-kubernetes-operator | pluto detect -
test:
runs-on: ubuntu-latest
timeout-minutes: 30
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
kubernetes-version: ["1.29.2"]
include:
- python-version: '3.10'
kubernetes-version: 1.28.7
- python-version: '3.10'
kubernetes-version: 1.27.11
- python-version: '3.10'
kubernetes-version: 1.26.14
env:
KUBECONFIG: .pytest-kind/pytest-kind/kubeconfig
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install deps
run: ./ci/install-deps.sh
- name: Run tests
env:
KUBERNETES_VERSION: ${{ matrix.kubernetes-version }}
TEST_ISTIO: "true"
TEST_DASK_GATEWAY: "true"
run: pytest --maxfail=3 --reruns=5 dask_kubernetes
- name: Debug kubernetes resources
if: always()
run: kubectl get all -A