Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Update org and repo name #442

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

Merged
merged 1 commit into from
Jan 26, 2018
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
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Kubernetes Python Client

[![Build Status](https://travis-ci.org/kubernetes-incubator/client-python.svg?branch=master)](https://travis-ci.org/kubernetes-incubator/client-python)
[![Build Status](https://travis-ci.org/kubernetes-client/python.svg?branch=master)](https://travis-ci.org/kubernetes-client/python)
[![PyPI version](https://badge.fury.io/py/kubernetes.svg)](https://badge.fury.io/py/kubernetes)
[![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")
[![codecov](https://codecov.io/gh/kubernetes-client/python/branch/master/graph/badge.svg)](https://codecov.io/gh/kubernetes-client/python "Non-generated packages only")
[![pypi supported versions](https://img.shields.io/pypi/pyversions/kubernetes.svg)](https://pypi.python.org/pypi/kubernetes)
[![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)
[![Client Support Level](https://img.shields.io/badge/kubernetes%20client-beta-green.svg?style=flat&colorA=306CE8)](http://bit.ly/kubernetes-client-support-badge)
Expand All @@ -14,8 +14,8 @@ Python client for the [kubernetes](http://kubernetes.io/) API.
From source:

```
git clone --recursive https://github.com/kubernetes-incubator/client-python.git
cd client-python
git clone --recursive https://github.com/kubernetes-client/python.git
cd python
python setup.py install
```

Expand Down Expand Up @@ -117,14 +117,14 @@ between client-python versions.

Key:

* `✓` 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.
* `✓` 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.
* `✗` No longer maintained; please upgrade.

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

## Community, Support, Discussion

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).
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).

### Code of Conduct

Expand Down
4 changes: 2 additions & 2 deletions devel/release.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ branch, update release tags, create distribution packages and upload them to
pip.

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

Expand Down Expand Up @@ -141,7 +141,7 @@ twine upload dist/*
## Create github release

Create a gihub release by starting from
[this page](https://github.com/kubernetes-incubator/client-python/releases).
[this page](https://github.com/kubernetes-client/python/releases).
Click Deaft new release button. Name the tag the same as CLIENT_VERSION. Change
the target branch to "release-x.y". If the release is a pre-release, check the
`This is a pre-release` option.
Expand Down
2 changes: 1 addition & 1 deletion devel/submodules.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ This document will provide basic steps to get submodules work.
To clone repo, you need to pass `recursive` parameter to make the clone also get submodules:

```bash
git clone --recursive https://github.com/kubernetes-incubator/client-python.git
git clone --recursive https://github.com/kubernetes-client/python.git
```

if you already clone repo with no `--recursive` option, you can run this command to get submodules:
Expand Down
2 changes: 1 addition & 1 deletion examples/notebooks/docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM nbgallery/jupyter-alpine:latest

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

ENTRYPOINT ["/sbin/tini", "--"]
CMD ["jupyter", "notebook", "--ip=0.0.0.0"]
Expand Down
2 changes: 1 addition & 1 deletion examples/notebooks/docker/jupyter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@ spec:
volumes:
- name: notebook-volume
gitRepo:
repository: "https://github.com/kubernetes-incubator/client-python.git"
repository: "https://github.com/kubernetes-client/python.git"
2 changes: 1 addition & 1 deletion examples/notebooks/intro_notebook.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"- **`delete_xxxx`** : delete a resource. This performs operations similar to **`kubectl delete`**.\n",
"\n",
"\n",
"For Futher information see the Documentation for API Endpoints section in https://github.com/kubernetes-incubator/client-python/blob/master/kubernetes/README.md"
"For Futher information see the Documentation for API Endpoints section in https://github.com/kubernetes-client/python/blob/master/kubernetes/README.md"
]
},
{
Expand Down
4 changes: 2 additions & 2 deletions kubernetes/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ Python 2.7 and 3.4+
If the python package is hosted on Github, you can install directly from Github

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

Then import the package:
```python
Expand Down
4 changes: 2 additions & 2 deletions scripts/cherry_pick_pull.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ declare -r REBASEMAGIC="${REPO_ROOT}/.git/rebase-apply"
DRY_RUN=${DRY_RUN:-""}
UPSTREAM_REMOTE=${UPSTREAM_REMOTE:-upstream}
FORK_REMOTE=${FORK_REMOTE:-origin}
MAIN_REPO_NAME=${MAIN_REPO_NAME:-"client-python"}
MAIN_REPO_ORG=${MAIN_REPO_ORG:-"kubernetes-incubator"}
MAIN_REPO_NAME=${MAIN_REPO_NAME:-"python"}
MAIN_REPO_ORG=${MAIN_REPO_ORG:-"kubernetes-client"}

if [[ -z ${GITHUB_USER:-} ]]; then
echo "Please export GITHUB_USER=<your-user> (or GH organization, if that's where your fork lives)"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
author_email="",
author="Kubernetes",
license="Apache License Version 2.0",
url="https://github.com/kubernetes-incubator/client-python",
url="https://github.com/kubernetes-client/python",
keywords=["Swagger", "OpenAPI", "Kubernetes"],
install_requires=REQUIRES,
tests_require=TESTS_REQUIRES,
Expand Down