Skip to content

Drop Python 3.9 (#902) #1003

Drop Python 3.9 (#902)

Drop Python 3.9 (#902) #1003

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/[email protected]
- 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.10", "3.11", "3.12"]
kubernetes-version: ["1.30.2"]
include:
- python-version: '3.10'
kubernetes-version: 1.29.4
- python-version: '3.10'
kubernetes-version: 1.28.9
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