From d3b917fcda1d36d2df49c3e7494ca5e8a6eb77c1 Mon Sep 17 00:00:00 2001 From: Rahul Date: Tue, 13 Jan 2015 11:49:40 -0800 Subject: [PATCH] Use UI instead of UX Replace all instances of UX with UI as that is what was meant. --- docs/{ux.md => ui.md} | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) rename docs/{ux.md => ui.md} (81%) diff --git a/docs/ux.md b/docs/ui.md similarity index 81% rename from docs/ux.md rename to docs/ui.md index fc6794379a5..17e1746be11 100644 --- a/docs/ux.md +++ b/docs/ui.md @@ -1,4 +1,4 @@ -# Kubernetes UX instructions +# Kubernetes UI instructions ## Kubernetes User Interface Kubernetes currently supports a simple web user interface. @@ -10,10 +10,10 @@ Start the server: cluster/kubecfg.sh -proxy -www $PWD/www ``` -The UX should now be running on [localhost](http://localhost:8001/static/index.html#/groups//selector) +The UI should now be running on [localhost](http://localhost:8001/static/index.html#/groups//selector) ### Running remotely -When Kubernetes is deployed, the server deploys the UX, you can visit ```/static/index.html#/groups//selector``` on your master server. +When Kubernetes is deployed, the server deploys the UI, you can visit ```/static/index.html#/groups//selector``` on your master server. ### Interacting with the user interface. @@ -27,8 +27,8 @@ _GroupBy_ takes a label ```key``` as a parameter, places all objects with the sa Select takes a [label selector](./labels.md) and uses it to filter, so only resources which match that label selector are displayed. For example, ```/groups/host/selector/name=frontend```, shows pods, grouped by host, which have a label with the name `frontend`. -## Rebuilding the UX -The UX relies on [go-bindata](https://github.com/jteeuwen/go-bindata) +## Rebuilding the UI +The UI relies on [go-bindata](https://github.com/jteeuwen/go-bindata) To install go-bindata: @@ -36,7 +36,7 @@ To install go-bindata: go get github.com/jteeuwen/go-bindata/... ``` -To rebuild the UX, run the following: +To rebuild the UI, run the following: ```sh hack/build-ui.sh