Browse code

Merge pull request #883 from danmcp/master

Merged by openshift-bot

OpenShift Bot authored on 2015/02/05 06:15:36
Showing 4 changed files
... ...
@@ -102,10 +102,9 @@ Follow these steps to ensure that virtual box interfaces are unmanaged:
102 102
 	$ ip link list | grep vboxnet  -A 1 | grep link/ether | awk '{print "mac:" $2}' |  paste -sd ";" -
103 103
 
104 104
 == Development: What's on the Menu?
105
-Right now you can see what's happening with OpenShift development in two repositories:
105
+Right now you can see what's happening with OpenShift development at:
106 106
 
107
-1. The OpenShift Origin repo: https://github.com/openshift/origin[github.com/openshift/origin]
108
-2. The OpenShift Kubernetes fork: https://github.com/openshift/kubernetes[github.com/openshift/kubernetes]
107
+https://github.com/openshift/origin[github.com/openshift/origin]
109 108
 
110 109
 Here's a quick summary of what we're doing there:
111 110
 
... ...
@@ -125,28 +124,9 @@ From here, you can follow the https://github.com/openshift/origin/#getting-start
125 125
 
126 126
 Ready to play with some code? Hop down and read up on our link:#_the_roadmap[roadmap] for ideas on where you can contribute.
127 127
 
128
-=== The OpenShift Kubernetes Fork
129
-The OpenShift team is using this fork of the https://github.com/GoogleCloudPlatform/kubernetes[Kubernetes] project for two primary purposes:
130
-
131
-* As a staging area for pull requests to the upstream project
132
-* As a build area for Kubernetes that includes OpenShift-specific features that the upstream community does not want to add to the main project
133
-
134 128
 *If you are interested in contributing to Kubernetes directly:* +
135 129
 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].
136 130
 
137
-*If you are more interested in the OpenShift-specific use of Kubernetes:* +
138
-First, https://help.github.com/articles/fork-a-repo[fork our fork] of Kubernetes and make a local copy for yourself:
139
-
140
-$ go get github.com/openshift/kubernetes
141
-$ cd $GOPATH/src/github.com/openshift/kubernetes
142
-$ git remote add <YOUR_GITHUB_USERNAME> git@github.com:<YOUR_GITHUB_USERNAME>/kubernetes
143
-
144
-From there, head to the https://github.com/openshift/kubernetes#development[Development section] of the README for general information on tinkering with Kubernetes.
145
-
146
-When you're ready to get your hands dirty, check out the roadmap info in the next section.
147
-
148 131
 === Troubleshooting
149 132
 
150 133
 If you run into difficulties running OpenShift, start by reading through the https://github.com/openshift/origin/blob/master/docs/debugging-openshift.md[troubleshooting guide].
... ...
@@ -174,14 +174,6 @@ $ go get github.com/openshift/origin
174 174
 $ go get github.com/GoogleCloudPlatform/kubernetes
175 175
 ```
176 176
 
177
-You will also need [openshift/kubernetes](https://github.com/openshift/kubernetes) as a remote of 
178
-[GoogleCloudPlatform/kubernetes](https://github.com/GoogleCloudPlatform/kubernetes):
179
-
180
-```
181
-$ cd $GOPATH/src/github.com/GoogleCloudPlatform/kubernetes
182
-$ git remote add openshift git@github.com:openshift/kubernetes.git
183
-```
184
-
185 177
 Check out the version of Kubernetes you want to rebase as a branch or tag named `stable_proposed` in
186 178
 [GoogleCloudPlatform/kubernetes](https://github.com/GoogleCloudPlatform/kubernetes). For example,
187 179
 if you are going to rebase the latest `master` of Kubernetes:
... ...
@@ -175,10 +175,6 @@ FAQ
175 175
     iterate through the next few months, you'll see this repository focus more on integration and
176 176
     plugins, with more and more features becoming part of Kubernetes.
177 177
 
178
-    OpenShift tracks the Kubernetes upstream at
179
-    [github.com/openshift/kubernetes](https://github.com/openshift/kubernetes).  See the wiki in
180
-    that project for more on how we manage the process of integrating prototyped features.
181
-
182 178
 2. What about [geard](https://github.com/openshift/geard)?
183 179
 
184 180
     Geard started as a prototype vehicle for the next generation of the OpenShift node - as an
... ...
@@ -17,12 +17,6 @@ echo "Hit ENTER to continue or CTRL+C to cancel"
17 17
 read
18 18
 
19 19
 pushd $GOPATH/src/github.com/GoogleCloudPlatform/kubernetes > /dev/null
20
-if [[ $(git remote -v | grep -c 'openshift/kubernetes.git') -eq 0 ]]; then
21
-  echo "You must have the OpenShift kubernetes repo set as a remote in $(pwd)"
22
-  echo
23
-  echo "  $ git remote add openshift git@github.com:openshift/kubernetes.git"
24
-  echo
25
-fi
26 20
 echo "Fetching latest ..."
27 21
 git fetch
28 22
 git fetch --tags