Skip to content

Commit ed05251

Browse files
committed
Update org and repo name
1 parent b176bad commit ed05251

File tree

9 files changed

+17
-17
lines changed

9 files changed

+17
-17
lines changed

README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Kubernetes Python Client
22

3-
[![Build Status](https://travis-ci.org/kubernetes-incubator/client-python.svg?branch=master)](https://travis-ci.org/kubernetes-incubator/client-python)
3+
[![Build Status](https://travis-ci.org/kubernetes-client/python.svg?branch=master)](https://travis-ci.org/kubernetes-client/python)
44
[![PyPI version](https://badge.fury.io/py/kubernetes.svg)](https://badge.fury.io/py/kubernetes)
5-
[![codecov](https://codecov.io/gh/kubernetes-incubator/client-python/branch/master/graph/badge.svg)](https://codecov.io/gh/kubernetes-incubator/client-python "Non-generated packages only")
5+
[![codecov](https://codecov.io/gh/kubernetes-client/python/branch/master/graph/badge.svg)](https://codecov.io/gh/kubernetes-client/python "Non-generated packages only")
66
[![pypi supported versions](https://img.shields.io/pypi/pyversions/kubernetes.svg)](https://pypi.python.org/pypi/kubernetes)
77
[![Client Capabilities](https://img.shields.io/badge/Kubernetes%20client-Silver-blue.svg?style=flat&colorB=C0C0C0&colorA=306CE8)](http://bit.ly/kubernetes-client-capabilities-badge)
88
[![Client Support Level](https://img.shields.io/badge/kubernetes%20client-beta-green.svg?style=flat&colorA=306CE8)](http://bit.ly/kubernetes-client-support-badge)
@@ -14,8 +14,8 @@ Python client for the [kubernetes](http://kubernetes.io/) API.
1414
From source:
1515

1616
```
17-
git clone --recursive https://github.com/kubernetes-incubator/client-python.git
18-
cd client-python
17+
git clone --recursive https://github.com/kubernetes-client/python.git
18+
cd python
1919
python setup.py install
2020
```
2121

@@ -117,14 +117,14 @@ between client-python versions.
117117

118118
Key:
119119

120-
* `` Changes in main Kubernetes repo are manually ([should be automated](https://github.com/kubernetes-incubator/client-python/issues/177)) published to client-python when they are available.
120+
* `` Changes in main Kubernetes repo are manually ([should be automated](https://github.com/kubernetes-client/python/issues/177)) published to client-python when they are available.
121121
* `` No longer maintained; please upgrade.
122122

123123
Note: There would be no maintenance for alpha/beta releases except the latest one.
124124

125125
## Community, Support, Discussion
126126

127-
You can reach the maintainers of this project at [SIG API Machinery](https://github.com/kubernetes/community/tree/master/sig-api-machinery). If you have any problem with the package or any suggestions, please file an [issue](https://github.com/kubernetes-incubator/client-python/issues).
127+
You can reach the maintainers of this project at [SIG API Machinery](https://github.com/kubernetes/community/tree/master/sig-api-machinery). If you have any problem with the package or any suggestions, please file an [issue](https://github.com/kubernetes-client/python/issues).
128128

129129
### Code of Conduct
130130

devel/release.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ branch, update release tags, create distribution packages and upload them to
55
pip.
66

77
## Change logs
8-
Make sure changes logs are up to date [here](https://github.com/kubernetes-incubator/client-python/blob/master/CHANGELOG.md).
8+
Make sure changes logs are up to date [here](https://github.com/kubernetes-client/python/blob/master/CHANGELOG.md).
99
If they are not, follow commits added after last release and update/commit
1010
the change logs to master.
1111

@@ -141,7 +141,7 @@ twine upload dist/*
141141
## Create github release
142142

143143
Create a gihub release by starting from
144-
[this page](https://github.com/kubernetes-incubator/client-python/releases).
144+
[this page](https://github.com/kubernetes-client/python/releases).
145145
Click Deaft new release button. Name the tag the same as CLIENT_VERSION. Change
146146
the target branch to "release-x.y". If the release is a pre-release, check the
147147
`This is a pre-release` option.

devel/submodules.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ This document will provide basic steps to get submodules work.
77
To clone repo, you need to pass `recursive` parameter to make the clone also get submodules:
88

99
```bash
10-
git clone --recursive https://github.com/kubernetes-incubator/client-python.git
10+
git clone --recursive https://github.com/kubernetes-client/python.git
1111
```
1212

1313
if you already clone repo with no `--recursive` option, you can run this command to get submodules:

examples/notebooks/docker/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM nbgallery/jupyter-alpine:latest
22

3-
RUN pip install git+https://github.com/kubernetes-incubator/client-python.git
3+
RUN pip install git+https://github.com/kubernetes-client/python.git
44

55
ENTRYPOINT ["/sbin/tini", "--"]
66
CMD ["jupyter", "notebook", "--ip=0.0.0.0"]

examples/notebooks/docker/jupyter.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,4 @@ spec:
3333
volumes:
3434
- name: notebook-volume
3535
gitRepo:
36-
repository: "https://github.com/kubernetes-incubator/client-python.git"
36+
repository: "https://github.com/kubernetes-client/python.git"

examples/notebooks/intro_notebook.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"- **`delete_xxxx`** : delete a resource. This performs operations similar to **`kubectl delete`**.\n",
3131
"\n",
3232
"\n",
33-
"For Futher information see the Documentation for API Endpoints section in https://github.com/kubernetes-incubator/client-python/blob/master/kubernetes/README.md"
33+
"For Futher information see the Documentation for API Endpoints section in https://github.com/kubernetes-client/python/blob/master/kubernetes/README.md"
3434
]
3535
},
3636
{

kubernetes/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ Python 2.7 and 3.4+
1717
If the python package is hosted on Github, you can install directly from Github
1818

1919
```sh
20-
pip install git+https://github.com/kubernetes-incubator/client-python.git
20+
pip install git+https://github.com/kubernetes-client/python.git
2121
```
22-
(you may need to run `pip` with root permission: `sudo pip install git+https://github.com/kubernetes-incubator/client-python.git`)
22+
(you may need to run `pip` with root permission: `sudo pip install git+https://github.com/kubernetes-client/python.git`)
2323

2424
Then import the package:
2525
```python

scripts/cherry_pick_pull.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ declare -r REBASEMAGIC="${REPO_ROOT}/.git/rebase-apply"
3131
DRY_RUN=${DRY_RUN:-""}
3232
UPSTREAM_REMOTE=${UPSTREAM_REMOTE:-upstream}
3333
FORK_REMOTE=${FORK_REMOTE:-origin}
34-
MAIN_REPO_NAME=${MAIN_REPO_NAME:-"client-python"}
35-
MAIN_REPO_ORG=${MAIN_REPO_ORG:-"kubernetes-incubator"}
34+
MAIN_REPO_NAME=${MAIN_REPO_NAME:-"python"}
35+
MAIN_REPO_ORG=${MAIN_REPO_ORG:-"kubernetes-client"}
3636

3737
if [[ -z ${GITHUB_USER:-} ]]; then
3838
echo "Please export GITHUB_USER=<your-user> (or GH organization, if that's where your fork lives)"

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
author_email="",
4141
author="Kubernetes",
4242
license="Apache License Version 2.0",
43-
url="https://github.com/kubernetes-incubator/client-python",
43+
url="https://github.com/kubernetes-client/python",
4444
keywords=["Swagger", "OpenAPI", "Kubernetes"],
4545
install_requires=REQUIRES,
4646
tests_require=TESTS_REQUIRES,

0 commit comments

Comments
 (0)