Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Document support for k8s v1.31 and remove v1.15 #75

Merged
merged 2 commits into from
Sep 12, 2024
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
8 changes: 4 additions & 4 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,24 +45,24 @@ jobs:
run: |
python setup.py sdist
- name: Archive artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: dist
name: dist-${{ matrix.python-version }}
path: |
dist
e2e-test:
strategy:
fail-fast: false
matrix:
k8s: [ '1.25', '1.29' ]
k8s: [ '1.26', '1.30' ]
name: E2E test in K8s ${{ matrix.k8s }}
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.9'
python-version: '3.10'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Modern lightweight kubernetes module for python
* Models and resources generated from the swagger specifications using standard dataclasses.
* Load/Dump resource objects from YAML.
* Support for async/await
* Support for installing a specific version of the kubernetes models (1.15 to 1.30)
* Support for installing a specific version of the kubernetes models (1.16 to 1.31)
* Lazy instantiation of inner models.
* Fast startup and small memory footprint as only needed models and resources can be imported.
* Automatic handling of pagination when listing resources.
Expand Down
4 changes: 2 additions & 2 deletions docs/resources-and-models.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

## Reference
lightkube-models
[1.31](https://gtsystem.github.io/lightkube-models/1.31),
[1.30](https://gtsystem.github.io/lightkube-models/1.30),
[1.29](https://gtsystem.github.io/lightkube-models/1.29),
[1.28](https://gtsystem.github.io/lightkube-models/1.28),
Expand All @@ -16,8 +17,7 @@ lightkube-models
[1.19](https://gtsystem.github.io/lightkube-models/1.19),
[1.18](https://gtsystem.github.io/lightkube-models/1.18),
[1.17](https://gtsystem.github.io/lightkube-models/1.17),
[1.16](https://gtsystem.github.io/lightkube-models/1.16),
[1.15](https://gtsystem.github.io/lightkube-models/1.15).
[1.16](https://gtsystem.github.io/lightkube-models/1.16).

## Resources

Expand Down
Loading