Skip to content

Commit

Permalink
Merge pull request kubernetes#1598 from brendandburns/nginx
Browse files Browse the repository at this point in the history
Add UX documentation, link into the apiserver, add a missing file.
  • Loading branch information
smarterclayton committed Oct 7, 2014
2 parents 0212c9b + 4144736 commit 897c59a
Show file tree
Hide file tree
Showing 10 changed files with 2,961 additions and 1 deletion.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

141 changes: 141 additions & 0 deletions Godeps/_workspace/src/github.com/elazarl/go-bindata-assetfs/assetfs.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 13 additions & 0 deletions Godeps/_workspace/src/github.com/elazarl/go-bindata-assetfs/doc.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ While the concepts and architecture in Kubernetes represent years of experience
* [Discussion and Community Support](#community-discussion-and-support)
* [Hacking on Kubernetes](#development)
* [Hacking on Kubernetes Salt configuration](docs/salt.md)
* [Kubernetes User Interface](docs/ux.md)

## Where to go next?

Expand Down
2 changes: 2 additions & 0 deletions cmd/apiserver/apiserver.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ import (
"github.com/GoogleCloudPlatform/kubernetes/pkg/cloudprovider"
"github.com/GoogleCloudPlatform/kubernetes/pkg/master"
"github.com/GoogleCloudPlatform/kubernetes/pkg/resources"
"github.com/GoogleCloudPlatform/kubernetes/pkg/ui"
"github.com/GoogleCloudPlatform/kubernetes/pkg/util"
"github.com/GoogleCloudPlatform/kubernetes/pkg/version/verflag"
"github.com/golang/glog"
Expand Down Expand Up @@ -168,6 +169,7 @@ func main() {
apiserver.NewAPIGroup(m.API_v1beta1()).InstallREST(mux, *apiPrefix+"/v1beta1")
apiserver.NewAPIGroup(m.API_v1beta2()).InstallREST(mux, *apiPrefix+"/v1beta2")
apiserver.InstallSupport(mux)
ui.InstallSupport(mux)

handler := http.Handler(mux)
if len(corsAllowedOriginList) > 0 {
Expand Down
Loading

0 comments on commit 897c59a

Please sign in to comment.