Skip to content

Commit f076191

Browse files
committed
Generated sources.
This commit contains the changes applied by running scripts/update-client.sh No manual changes, only auto generated code
1 parent 170964c commit f076191

File tree

2,045 files changed

+451927
-236328
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,045 files changed

+451927
-236328
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
kubernetes.client.api\_response module
2+
======================================
3+
4+
.. automodule:: kubernetes.client.api_response
5+
:members:
6+
:undoc-members:
7+
:show-inheritance:

doc/source/kubernetes.client.rst

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ Submodules
1717
:maxdepth: 4
1818

1919
kubernetes.client.api_client
20+
kubernetes.client.api_response
2021
kubernetes.client.configuration
2122
kubernetes.client.exceptions
2223
kubernetes.client.rest

doc/source/kubernetes.rst

-5
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,9 @@ Subpackages
88
:maxdepth: 4
99

1010
kubernetes.client
11-
kubernetes.config
12-
kubernetes.dynamic
1311
kubernetes.e2e_test
14-
kubernetes.leaderelection
15-
kubernetes.stream
1612
kubernetes.test
1713
kubernetes.utils
18-
kubernetes.watch
1914

2015
Module contents
2116
---------------
+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
# NOTE: This file is auto generated by OpenAPI Generator.
2+
# URL: https://openapi-generator.tech
3+
#
4+
# ref: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
5+
6+
name: client Python package
7+
8+
on: [push, pull_request]
9+
10+
jobs:
11+
build:
12+
13+
runs-on: ubuntu-latest
14+
strategy:
15+
matrix:
16+
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
17+
18+
steps:
19+
- uses: actions/checkout@v3
20+
- name: Set up Python ${{ matrix.python-version }}
21+
uses: actions/setup-python@v4
22+
with:
23+
python-version: ${{ matrix.python-version }}
24+
- name: Install dependencies
25+
run: |
26+
python -m pip install --upgrade pip
27+
pip install flake8 pytest
28+
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
29+
if [ -f test-requirements.txt ]; then pip install -r test-requirements.txt; fi
30+
- name: Lint with flake8
31+
run: |
32+
# stop the build if there are Python syntax errors or undefined names
33+
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
34+
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
35+
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
36+
- name: Test with pytest
37+
run: |
38+
pytest

kubernetes/.gitlab-ci.yml

+18-20
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,31 @@
1+
# NOTE: This file is auto generated by OpenAPI Generator.
2+
# URL: https://openapi-generator.tech
3+
#
14
# ref: https://docs.gitlab.com/ee/ci/README.html
5+
# ref: https://gitlab.com/gitlab-org/gitlab/-/blob/master/lib/gitlab/ci/templates/Python.gitlab-ci.yml
26

37
stages:
48
- test
59

6-
.nosetest:
10+
.pytest:
711
stage: test
812
script:
913
- pip install -r requirements.txt
1014
- pip install -r test-requirements.txt
1115
- pytest --cov=client
1216

13-
nosetest-2.7:
14-
extends: .nosetest
15-
image: python:2.7-alpine
16-
nosetest-3.3:
17-
extends: .nosetest
18-
image: python:3.3-alpine
19-
nosetest-3.4:
20-
extends: .nosetest
21-
image: python:3.4-alpine
22-
nosetest-3.5:
23-
extends: .nosetest
24-
image: python:3.5-alpine
25-
nosetest-3.6:
26-
extends: .nosetest
27-
image: python:3.6-alpine
28-
nosetest-3.7:
29-
extends: .nosetest
17+
pytest-3.7:
18+
extends: .pytest
3019
image: python:3.7-alpine
31-
nosetest-3.8:
32-
extends: .nosetest
20+
pytest-3.8:
21+
extends: .pytest
3322
image: python:3.8-alpine
23+
pytest-3.9:
24+
extends: .pytest
25+
image: python:3.9-alpine
26+
pytest-3.10:
27+
extends: .pytest
28+
image: python:3.10-alpine
29+
pytest-3.11:
30+
extends: .pytest
31+
image: python:3.11-alpine

kubernetes/.openapi-generator/COMMIT

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
Requested Commit/Tag : v4.3.0
2-
Actual Commit : c224cf484b020a7f5997d883cf331715df3fb52a
1+
Requested Commit/Tag : v7.1.0
2+
Actual Commit : e2a62ace74de361bef6338b7fa37da8577242aef

0 commit comments

Comments
 (0)