@@ -292,6 +292,42 @@ any local interaction with the filesystem or Docker.
292
292
More information about running extended tests can be found in
293
293
[ test/extended/README] ( https://github.com/openshift/origin/blob/master/test/extended/README.md ) .
294
294
295
+ ## Changing API
296
+
297
+ OpenShift is split into three major repositories:
298
+
299
+ 1 . https://github.com/openshift/api/ - which holds all the external API objects definitions.
300
+ 1 . https://github.com/openshift/client-go/ - which holds all the client code (written in Go).
301
+ 1 . https://github.com/openshift/origin/ - which holds the actual code behind OpenShift.
302
+
303
+ This split requires additional effort to introduce any API change. The following steps
304
+ should guide you through the process.
305
+
306
+ 1 . The first place to introduce the changes is [ openshift/api] ( https://github.com/openshift/api/ ) .
307
+ Here, you put your external API updates and when you are done run ` make generate ` . If you
308
+ need to introduce a new dependency run ` make update-deps ` , and almost never update ` glide.yaml `
309
+ directly. When you're done open a PR against the aforementioned repository and ping
310
+ [ @openshift/api-review ] ( https://github.com/orgs/openshift/teams/api-review ) for a review.
311
+
312
+ 2 . The next step includes updating the [ openshit/client-go] ( https://github.com/openshift/client-go/ )
313
+ with the changes from step 1, since it vendors it. To do so run ` make update-deps ` to pick up
314
+ the changes from step 1 and then run ` make generate ` to update the client code with necessary
315
+ changes. When you're done open a PR against the aforementioned repository and ping
316
+ [ @openshift/sig-master ] ( https://github.com/orgs/openshift/teams/sig-master ) for a review.
317
+
318
+ 3 . The final step happens in [ openshift/origin] ( https://github.com/openshift/origin/ ) repository.
319
+ As previously, run ` make update-deps ` to pick up the changes from previous two steps. Afterwards
320
+ run ` make update ` to generated the remaining bits in origin repository. When you're done open
321
+ a PR against the aforementioned repository and ping [ @openshift/sig-master ] ( https://github.com/orgs/openshift/teams/sig-master )
322
+ for a review.
323
+
324
+ If at any point you have doubts about any step of the flow reach out to
325
+ [ @openshift/sig-master ] ( https://github.com/orgs/openshift/teams/sig-master ) team for help.
326
+
327
+ NOTE: It may happen that during ` make update-deps ` step you will pick up the changes introduced
328
+ by someone else in his PR. In that case sync with the other PR's author and include his changes
329
+ in your PR noting the fact to your reviewer.
330
+
295
331
## Installing Godep
296
332
297
333
OpenShift and Kubernetes use [ Godep] ( https://github.com/tools/godep ) for
0 commit comments