Skip to content

Commit fe3b050

Browse files
author
OpenShift Bot
committed
Merge pull request #4138 from soltysh/move_k8s_repo
Merged by openshift-bot
2 parents 5d224e1 + 46ffa26 commit fe3b050

File tree

20 files changed

+62
-133
lines changed

20 files changed

+62
-133
lines changed

CONTRIBUTING.adoc

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ OpenShift Developers <[email protected]>
55
:toc2:
66
:sectanchors:
77

8-
The OpenShift architecture builds upon the flexibility and scalability of https://docker.com/[Docker] and https://github.com/GoogleCloudPlatform/kubernetes[Kubernetes] to deliver a powerful new https://www.youtube.com/watch?v=aZ40GobvA1c[Platform-as-a-Service] system. This article explains how to set up a development environment and get involved with this latest version of OpenShift. Kubernetes is included in this repo for ease of development, and the version we include is periodically updated.
8+
The OpenShift architecture builds upon the flexibility and scalability of https://docker.com/[Docker] and https://github.com/kubernetes/kubernetes[Kubernetes] to deliver a powerful new https://www.youtube.com/watch?v=aZ40GobvA1c[Platform-as-a-Service] system. This article explains how to set up a development environment and get involved with this latest version of OpenShift. Kubernetes is included in this repo for ease of development, and the version we include is periodically updated.
99

1010
To get started you can either:
1111

@@ -24,7 +24,7 @@ The OpenShift team periodically publishes binaries to GitHub on https://github.c
2424

2525
The tar file for each platform contains a single binary `openshift` which is the all-in-one OpenShift installation.
2626

27-
* Use `sudo openshift start` to launch the server. Root access is required to create services due to the need to modify IPTables. See issue: https://github.com/GoogleCloudPlatform/kubernetes/issues/1859.
27+
* Use `sudo openshift start` to launch the server. Root access is required to create services due to the need to modify IPTables. See issue: https://github.com/kubernetes/kubernetes/issues/1859.
2828
* Use `oc login <server> ...` to connect to an OpenShift server
2929
* Use `openshift help` to see more about the commands in the binary
3030

@@ -202,7 +202,7 @@ https://github.com/openshift/origin[github.com/openshift/origin]
202202
Ready to play with some code? Hop down and read up on our link:#_the_roadmap[roadmap] for ideas on where you can contribute.
203203

204204
*If you are interested in contributing to Kubernetes directly:* +
205-
https://github.com/GoogleCloudPlatform/kubernetes#community-discussion-and-support[Join the Kubernetes community] and check out the https://github.com/GoogleCloudPlatform/kubernetes/blob/master/CONTRIBUTING.md[contributing guide].
205+
https://github.com/kubernetes/kubernetes#community-discussion-and-support[Join the Kubernetes community] and check out the https://github.com/kubernetes/kubernetes/blob/master/CONTRIBUTING.md[contributing guide].
206206

207207
== Troubleshooting
208208

HACKING.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -186,15 +186,15 @@ were properly reflected* in the Origin codebase.
186186
### 1. Preparation
187187

188188
Before you begin, make sure you have both [openshift/origin](https://github.com/openshift/origin) and
189-
[GoogleCloudPlatform/kubernetes](https://github.com/GoogleCloudPlatform/kubernetes) in your $GOPATH:
189+
[kubernetes/kubernetes](https://github.com/kubernetes/kubernetes) in your $GOPATH:
190190

191191
```
192192
$ go get github.com/openshift/origin
193193
$ go get k8s.io/kubernetes
194194
```
195195

196196
Check out the version of Kubernetes you want to rebase as a branch or tag named `stable_proposed` in
197-
[GoogleCloudPlatform/kubernetes](https://github.com/GoogleCloudPlatform/kubernetes). For example,
197+
[kubernetes/kubernetes](https://github.com/kubernetes/kubernetes). For example,
198198
if you are going to rebase the latest `master` of Kubernetes:
199199

200200
```

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ OpenShift Application Platform
55
[![Travis](https://travis-ci.org/openshift/origin.svg?branch=master)](https://travis-ci.org/openshift/origin)
66

77
This is the source repository for [OpenShift 3](https://openshift.github.io), based on top of [Docker](https://www.docker.io) containers and the
8-
[Kubernetes](https://github.com/GoogleCloudPlatform/kubernetes) container cluster manager.
8+
[Kubernetes](https://github.com/kubernetes/kubernetes) container cluster manager.
99
OpenShift adds developer and operational centric tools on top of Kubernetes to enable rapid application development,
1010
easy deployment and scaling, and long-term lifecycle maintenance for small and large teams and applications.
1111

@@ -108,8 +108,8 @@ We highly recommend trying out the [OpenShift walkthrough](https://github.com/op
108108
Both OpenShift and Kubernetes have a strong focus on documentation - see the following for more information about them:
109109

110110
* [OpenShift Documentation](http://docs.openshift.org/latest/welcome/index.html)
111-
* [Kubernetes Getting Started](https://github.com/GoogleCloudPlatform/kubernetes/blob/master/README.md)
112-
* [Kubernetes Documentation](https://github.com/GoogleCloudPlatform/kubernetes/blob/master/docs/README.md)
111+
* [Kubernetes Getting Started](https://github.com/kubernetes/kubernetes/blob/master/README.md)
112+
* [Kubernetes Documentation](https://github.com/kubernetes/kubernetes/blob/master/docs/README.md)
113113

114114

115115
### Troubleshooting
@@ -177,7 +177,7 @@ You can develop [locally on your host](CONTRIBUTING.adoc#develop-locally-on-your
177177

178178
First, **get up and running with the** [**Contributing Guide**](CONTRIBUTING.adoc).
179179

180-
All contributions are welcome - OpenShift uses the Apache 2 license and does not require any contributor agreement to submit patches. Please open issues for any bugs or problems you encounter, ask questions on the OpenShift IRC channel (#openshift-dev on freenode), or get involved in the [Kubernetes project](https://github.com/GoogleCloudPlatform/kubernetes) at the container runtime layer.
180+
All contributions are welcome - OpenShift uses the Apache 2 license and does not require any contributor agreement to submit patches. Please open issues for any bugs or problems you encounter, ask questions on the OpenShift IRC channel (#openshift-dev on freenode), or get involved in the [Kubernetes project](https://github.com/kubernetes/kubernetes) at the container runtime layer.
181181

182182
See [HACKING.md](https://github.com/openshift/origin/blob/master/HACKING.md) for more details on developing on OpenShift including how different tests are setup.
183183

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
A pod corresponds to a group of containers running together on the same machine. All containers in a pod share an IP address, and may have access to shared volumes and local fileystem. Like individual application containers, pods are considered to be relatively ephemeral rather than durable entities. Pods are scheduled to nodes and remain there until termination (according to restart policy) or deletion. When a node dies, the pods scheduled to that node are deleted. Specific pods are never rescheduled to new nodes; instead, they must be replaced by a component like the replication controller.
22

3-
See link:https://github.com/GoogleCloudPlatform/kubernetes/blob/master/docs/pods.md[the Kubernetes pod documentation] for more information.
3+
See link:https://github.com/kubernetes/kubernetes/blob/master/docs/user-guide/pods.md[the Kubernetes pod documentation] for more information.

api/definitions/v1.service/description.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ Services may be exposed only inside the cluster (type ClusterIP), inside the clu
44
55
If the selector for pods is not specified, the service endpoints may be managed by the client directly. Update the endpoint resource to program the service - this can be used to inject external network services into a namsepace.
66
7-
See link:https://github.com/GoogleCloudPlatform/kubernetes/blob/master/docs/services.md[the Kubernetes service documentation] for more information.
7+
See link:https://github.com/kubernetes/kubernetes/blob/master/docs/user-guide/services.md[the Kubernetes service documentation] for more information.

docs/atomic-quick-start-tutorial.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ curl http://$IP_FROM_ABOVE:8080/
218218

219219
18 Try new things
220220
-----------------
221-
That’s it, your system should be up and running. You can now add new nodes. Try adding the internal registry with the “oadm registry” command. Or try adding the enterprise router with the “oadm router” command. You can also take a look at other kubernetes examples: https://github.com/GoogleCloudPlatform/kubernetes/tree/master/examples
221+
That’s it, your system should be up and running. You can now add new nodes. Try adding the internal registry with the “oadm registry” command. Or try adding the enterprise router with the “oadm router” command. You can also take a look at other kubernetes examples: https://github.com/kubernetes/kubernetes/tree/master/examples
222222

223223
[IMPORTANT]
224224
Remember to use the “oc” command instead of the “kubectl” command when using Atomic Enterprise Platform.

docs/cli.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -700,7 +700,7 @@ This destroys the session token, preventing further access until next login (wit
700700

701701
### oc config
702702

703-
This manages the OpenShift [kubeconfig files](https://github.com/GoogleCloudPlatform/kubernetes/blob/master/docs/kubeconfig-file.md).
703+
This manages the OpenShift [kubeconfig files](https://github.com/kubernetes/kubernetes/blob/master/docs/user-guide/kubeconfig-file.md).
704704
The general form is:
705705

706706
```bash

docs/openshift_model.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Model object that stores the logs from a particular build for later inspection.
3737

3838
## Deployment
3939

40-
A deployment is a specially annotated [replicationController](https://github.com/GoogleCloudPlatform/kubernetes/blob/master/docs/replication-controller.md), specifying the desired configuration of that controller. See the [deployments](deployments.md) document.
40+
A deployment is a specially annotated [replicationController](https://github.com/kubernetes/kubernetes/blob/master/docs/user-guide/replication-controller.md), specifying the desired configuration of that controller. See the [deployments](deployments.md) document.
4141

4242
## DeploymentConfig
4343

docs/proposals/metadata.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ to work properly. The UI might warn the user that deploying this Docker image
162162
may exceed their user quota.
163163

164164
The values must be compatible with [Kubernetes
165-
quantity](https://github.com/GoogleCloudPlatform/kubernetes/blob/master/docs/resources.md#resource-quantities) values for CPU and memory.
165+
quantity](https://github.com/kubernetes/kubernetes/blob/master/docs/design/resources.md#resource-quantities) values for CPU and memory.
166166

167167
*Example:*
168168

0 commit comments

Comments
 (0)