Kubernetes Prow Robot
888d7df5ff
Merge pull request #1527 from roycaihw/v18-ga
...
End to End Tests - release-18.0 / build (3.6) (push) Has been cancelled
End to End Tests - release-18.0 / build (3.7) (push) Has been cancelled
End to End Tests - release-18.0 / build (3.8) (push) Has been cancelled
End to End Tests - release-18.0 / build (3.9) (push) Has been cancelled
Kubernetes Python Client - Validation / build (3.6) (push) Has been cancelled
Kubernetes Python Client - Validation / build (3.7) (push) Has been cancelled
Kubernetes Python Client - Validation / build (3.8) (push) Has been cancelled
Kubernetes Python Client - Validation / build (3.9) (push) Has been cancelled
Release 18.20.0
2021-08-16 14:04:22 -07:00
Haowei Cai
5231791f0c
update changelog and readme
2021-08-16 13:53:54 -07:00
Haowei Cai
9e3641da11
apply hotfixes
2021-08-16 13:52:19 -07:00
Haowei Cai
286bd61dc3
generated client change for v18 GA release
2021-08-16 13:44:53 -07:00
Haowei Cai
4a5b39d085
update version constants for v18 GA release
2021-08-16 13:34:42 -07:00
Kubernetes Prow Robot
6850340ec6
Merge pull request #1519 from roycaihw/release18
...
Pull master into release-18.0
2021-08-05 17:14:54 -07:00
Haowei Cai
8bd7651ec4
update release notes
2021-08-05 16:58:19 -07:00
Haowei Cai
1b80892d6c
Merge branch 'master' of github.com:kubernetes-client/python into release18
2021-08-05 16:39:33 -07:00
Haowei Cai
7d89f0254e
update submodule
2021-08-05 16:39:18 -07:00
Kubernetes Prow Robot
0b146c35ed
Merge pull request #1496 from roycaihw/release-18b1
...
Release v18.20.0b1
2021-06-21 09:14:50 -07:00
Haowei Cai
a7f122ece4
update readme and changelog
2021-06-20 19:26:06 -07:00
Haowei Cai
1d5d40556f
generated client change for v18.20.0b1 release
2021-06-20 19:16:03 -07:00
Haowei Cai
698a4689f2
update version constants for v18.20.0b1 release
2021-06-20 19:05:05 -07:00
Haowei Cai
d8fd974e63
Merge branch 'master' of github.com:kubernetes-client/python into release-18b1
2021-06-20 19:00:22 -07:00
Kubernetes Prow Robot
fa64fd9ce4
Merge pull request #1425 from roycaihw/fix-release-notes
...
Fix release notes for v18.17.0a1 and v17.14.0a1 in release-18.0 branch
2021-04-22 15:47:27 -07:00
Nabarun Pal
f152ecf5ea
Update CHANGELOG with v17.14.0a1
...
Signed-off-by: Nabarun Pal <pal.nabarun95@gmail.com>
2021-04-22 15:14:16 -07:00
Haowei Cai
f4a5dd0aab
fix release notes for v18.17.0a1
2021-04-22 14:45:09 -07:00
Kubernetes Prow Robot
f0ff60f290
Merge pull request #1411 from roycaihw/release-18.0
...
Release v18.17.0a1
2021-04-12 16:30:49 -07:00
Haowei Cai
2d9dbdf133
update changelog and readme
2021-04-12 13:54:14 -07:00
Haowei Cai
adc68b77ba
add a test for default configuration behavior
2021-04-12 13:54:14 -07:00
Fabian von Feilitzsch
5b68936c23
Add test to ensure kubernetes client threadpool is cleaned up
2021-04-12 13:54:14 -07:00
Nabarun Pal
8b526497c5
Add kubernetes.client.apis as an alias to kubernetes.client.api
...
Reference: https://github.com/kubernetes-client/python/issues/974
Signed-off-by: Nabarun Pal <pal.nabarun95@gmail.com>
2021-04-12 13:54:14 -07:00
Nabarun Pal
61f1fbe49a
Fix custom objects API to preserve backward compatibility
...
Reference:
- [#866 ](https://github.com/kubernetes-client/python/issues/866 )
- [#959 ](https://github.com/kubernetes-client/python/pull/959 )
Signed-off-by: Nabarun Pal <pal.nabarun95@gmail.com>
2021-04-12 13:54:14 -07:00
Haowei Cai
3b247f5d0f
generated client change for v18.17.0a1 release
...
removed the generated test directory following the hot issue
(https://github.com/kubernetes-client/python/blob/master/devel/release.md#hot-issues ):
4. Remove the tests directory
2021-04-12 13:54:14 -07:00
Haowei Cai
e43ab1e4ad
workaround for required LIBRARY env from gen repo
...
the env is not used by the python client.
2021-04-12 13:54:14 -07:00
Haowei Cai
91bb4910b2
update version constant for v18.17.0a1 release
...
kubernetes 1.18 is no longer maintained. 1.18.17 was the last patch release.
2021-04-11 16:03:07 -07:00
Abhijeet Kasurde
eb9db7762d
examples/pod_exec.py: fix example
...
Use get_default_copy() API with configuration.
2021-04-11 16:02:05 -07:00
abhiabhi94
86cd342c63
Refactor utils
...
- move regex compilation to the top of the module to enable caching.
2021-04-11 16:01:49 -07:00
Soumitra Kumar
dadc47b282
Added kubernetes.leaderelection in packages list to fix No module named 'kubernetes.leaderelection' error
...
To reproduce: Make sure to create a file outside of checked out python repo directory.
$ cat hello_k8s.py
import kubernetes
kubernetes.config.load_kube_config()
k8s = kubernetes.client.CoreV1Api()
print("Listing pods with their IPs:")
ret = k8s.list_pod_for_all_namespaces(watch=False)
for i in ret.items:
print("%s\t%s\t%s" % (i.status.pod_ip, i.metadata.namespace, i.metadata.name))
python hello_k8s.py
Traceback (most recent call last):
File "hello_k8s.py", line 1, in <module>
import kubernetes
File "<frozen zipimport>", line 259, in load_module
File "anaconda3/lib/python3.8/site-packages/kubernetes-17.0.0_snapshot-py3.8.egg/kubernetes/__init__.py", line 25, in <module>
ModuleNotFoundError: No module named 'kubernetes.leaderelection'
2021-04-11 16:01:36 -07:00
Invictus17
affaebb534
Adding symbolic link to base/leaderelection
2021-04-11 16:01:23 -07:00
Sumant
dcd449ace6
Enable leaderelection
2021-04-11 16:00:45 -07:00
Haowei Cai
c55c0ef663
configmap-e2e: use labels
2021-04-11 16:00:38 -07:00
Arumugam
73c7339621
Adding Power support(ppc64le) with ci and testing to the project for architecture independent
2021-04-11 16:00:27 -07:00
Patrick J. McNerthney
69986824ac
Implement back end raw port test container using python.
2021-04-11 16:00:13 -07:00
Haowei Cai
b143e8c829
changelog for python-base update
2021-04-11 15:06:23 -07:00
Haowei Cai
b2b520a010
update python-base submodule
2021-04-11 14:57:42 -07:00
Kubernetes Prow Robot
7a0e799a02
Merge pull request #1319 from palnabarun/release-18.0
...
Release 18.0 Snapshot
2020-11-23 18:23:00 -08:00
Nabarun Pal
fae8590d61
Add a note about the change in client versioning schema
...
Signed-off-by: Nabarun Pal <pal.nabarun95@gmail.com>
2020-11-22 21:58:52 +05:30
Nabarun Pal
4ff8c05914
Add v17.14.0a1 to the compatibility matrix
...
Signed-off-by: Nabarun Pal <pal.nabarun95@gmail.com>
2020-11-22 21:58:52 +05:30
Nabarun Pal
a027b2a4bb
Refactor the format of compatibitility matrix
...
Signed-off-by: Nabarun Pal <pal.nabarun95@gmail.com>
2020-11-22 21:58:52 +05:30
Nabarun Pal
469bc9af88
Update CHANGELOG with v18.0.0-snapshot
...
Signed-off-by: Nabarun Pal <pal.nabarun95@gmail.com>
2020-11-22 21:58:52 +05:30
Haowei Cai
1c2be29248
add a test for default configuration behavior
2020-11-17 04:00:33 +05:30
Fabian von Feilitzsch
b4a3fc235e
Add test to ensure kubernetes client threadpool is cleaned up
2020-11-17 04:00:33 +05:30
Nabarun Pal
9f880d8396
Add kubernetes.client.apis as an alias to kubernetes.client.api
...
Reference: https://github.com/kubernetes-client/python/issues/974
Signed-off-by: Nabarun Pal <pal.nabarun95@gmail.com>
2020-11-17 04:00:33 +05:30
Nabarun Pal
e379ad2868
Fix custom objects API to preserve backward compatibility
...
Reference:
- [#866 ](https://github.com/kubernetes-client/python/issues/866 )
- [#959 ](https://github.com/kubernetes-client/python/pull/959 )
Signed-off-by: Nabarun Pal <pal.nabarun95@gmail.com>
2020-11-17 04:00:32 +05:30
Nabarun Pal
cd92c5d545
Generate client 18.0.0-snapshot
...
Signed-off-by: Nabarun Pal <pal.nabarun95@gmail.com>
2020-11-17 04:00:32 +05:30
Nabarun Pal
0fd73895d7
Update constants to reflect Client release 18.0.0-snapshot
...
Signed-off-by: Nabarun Pal <pal.nabarun95@gmail.com>
2020-11-17 04:00:32 +05:30
Nabarun Pal
161f1236dc
Update README
...
Signed-off-by: Nabarun Pal <pal.nabarun95@gmail.com>
2020-11-17 04:00:32 +05:30
Nabarun Pal
7a4ffcf819
Update CHANGELOG with v17.0.0-snapshot
...
Signed-off-by: Nabarun Pal <pal.nabarun95@gmail.com>
2020-11-17 04:00:32 +05:30
Haowei Cai
631386c894
add a test for default configuration behavior
2020-11-17 04:00:31 +05:30
Fabian von Feilitzsch
a3d90aa243
Add test to ensure kubernetes client threadpool is cleaned up
2020-11-17 04:00:31 +05:30
Nabarun Pal
4cfbfd4e17
Add kubernetes.client.apis as an alias to kubernetes.client.api
...
Reference: https://github.com/kubernetes-client/python/issues/974
Signed-off-by: Nabarun Pal <pal.nabarun95@gmail.com>
2020-11-17 04:00:31 +05:30
Nabarun Pal
7f1667e5a2
Fix custom objects API to preserve backward compatibility
...
Reference:
- [#866 ](https://github.com/kubernetes-client/python/issues/866 )
- [#959 ](https://github.com/kubernetes-client/python/pull/959 )
Signed-off-by: Nabarun Pal <pal.nabarun95@gmail.com>
2020-11-17 04:00:31 +05:30
Nabarun Pal
86f621a0f2
Remove generated tests
...
Signed-off-by: Nabarun Pal <pal.nabarun95@gmail.com>
2020-11-17 04:00:31 +05:30
Nabarun Pal
2132e24fd1
Generate client 17.0.0
...
Signed-off-by: Nabarun Pal <pal.nabarun95@gmail.com>
2020-11-17 04:00:30 +05:30
Nabarun Pal
329b27a859
Update constants to reflect Client release 17.0.0
...
Signed-off-by: Nabarun Pal <pal.nabarun95@gmail.com>
2020-11-17 04:00:30 +05:30
Nabarun Pal
c382d32f92
Update CHANGELOG and README to reflect v12.0.0 and v12.0.1
...
Signed-off-by: Nabarun Pal <pal.nabarun95@gmail.com>
2020-11-17 04:00:30 +05:30
Nabarun Pal
89ea5306ab
Update hot patch section of release documentation
...
Signed-off-by: Nabarun Pal <pal.nabarun95@gmail.com>
2020-11-17 04:00:29 +05:30
dependabot[bot]
ddf34709bc
Bump actions/setup-python from v2.1.3 to v2.1.4
...
Bumps [actions/setup-python](https://github.com/actions/setup-python ) from v2.1.3 to v2.1.4.
- [Release notes](https://github.com/actions/setup-python/releases )
- [Commits](https://github.com/actions/setup-python/compare/v2.1.3...41b7212b1668f5de9d65e9c82aa777e6bbedb3a8 )
Signed-off-by: dependabot[bot] <support@github.com>
2020-11-17 04:00:29 +05:30