Merge pull request #443 from roycaihw/release-5.0 · ryanjfrizzell/python@a141eab · GitHub
Skip to content

Commit a141eab

Browse files
authored
Merge pull request kubernetes-client#443 from roycaihw/release-5.0
Update org and repo name for release-5.0
2 parents 1dd8aca + 2bfefd7 commit a141eab

9 files changed

Lines changed: 17 additions & 17 deletions

File tree

README.md

Lines changed: 6 additions & 6 deletions

devel/release.md

Lines changed: 2 additions & 2 deletions
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 2 additions & 2 deletions
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

Lines changed: 2 additions & 2 deletions
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

Lines changed: 1 addition & 1 deletion

0 commit comments

Comments
 (0)