Browse code

Add Godoc files to all OpenShift 3 packages

Vojtech Vitek (V-Teq) authored on 2014/08/28 20:25:04
Showing 5 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,3 @@
0
+// Package api includes all OpenShift-specific types used to communicate
1
+// between the various parts of the OpenShift and the Kubernetes systems.
2
+package api
0 3
new file mode 100644
... ...
@@ -0,0 +1,4 @@
0
+// Package client contains the implementation of the client side communication with the
1
+// Kubernetes master. OpenShift currently embeds the Kubernetes's kubecfg command line
2
+// for prototyping and debugging.
3
+package client
0 4
new file mode 100644
... ...
@@ -0,0 +1,4 @@
0
+// Package master contains code for setting up and running OpenShift all-in-one
1
+// server. This includes OpenShift API server, Kubernetes cluster master and
2
+// etcd server.
3
+package master
0 4
new file mode 100644
... ...
@@ -0,0 +1,3 @@
0
+// Package service contains a generic ServiceRegistry interface and
1
+// implements the storage for the Service api server objects.
2
+package service
0 3
new file mode 100644
... ...
@@ -0,0 +1,3 @@
0
+// Package version supplies version information collected at build time to
1
+// OpenShift and Kubernetes components.
2
+package version