You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
9
9
10
10
To get started you can either:
11
11
@@ -24,7 +24,7 @@ The OpenShift team periodically publishes binaries to GitHub on https://github.c
24
24
25
25
The tar file for each platform contains a single binary `openshift` which is the all-in-one OpenShift installation.
26
26
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.
28
28
* Use `oc login <server> ...` to connect to an OpenShift server
29
29
* Use `openshift help` to see more about the commands in the binary
Ready to play with some code? Hop down and read up on our link:#_the_roadmap[roadmap] for ideas on where you can contribute.
203
203
204
204
*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].
@@ -177,7 +177,7 @@ You can develop [locally on your host](CONTRIBUTING.adoc#develop-locally-on-your
177
177
178
178
First, **get up and running with the**[**Contributing Guide**](CONTRIBUTING.adoc).
179
179
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.
181
181
182
182
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.
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.
2
2
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.
Copy file name to clipboardexpand all lines: api/definitions/v1.service/description.adoc
+1-1
Original file line number
Diff line number
Diff line change
@@ -4,4 +4,4 @@ Services may be exposed only inside the cluster (type ClusterIP), inside the clu
4
4
5
5
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.
6
6
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.
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
222
222
223
223
[IMPORTANT]
224
224
Remember to use the “oc” command instead of the “kubectl” command when using Atomic Enterprise Platform.
Copy file name to clipboardexpand all lines: docs/openshift_model.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -37,7 +37,7 @@ Model object that stores the logs from a particular build for later inspection.
37
37
38
38
## Deployment
39
39
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.
0 commit comments