Skip to content

Commit

Permalink
Design doc for next version of user experiene of the UI
Browse files Browse the repository at this point in the history
  • Loading branch information
bryk committed Apr 11, 2016
1 parent b6e247d commit 5d2f22d
Showing 1 changed file with 143 additions and 0 deletions.
143 changes: 143 additions & 0 deletions docs/design/navigation-and-scale.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,143 @@
# UX and navigation that scales

This design document is a proposal for Dashboard UI user experience that
covers navigation and the way of displaying and interacting with K8s objects.

## Background

Currently Dashboard UI allows users to see and interact with a very limited
subset of Kubernetes resources. For example, it shows Replication Controllers,
while ignoring existence of Replica Sets, Deployments, Daemon Sets, etc.
Additionally, it does not allow for creating or modifying individual
resources, while supporting only application creation (akin to `kubectl run`)
and scaling. For more details see [mockups](mockups/11-11-2015-initial) of
current implementation.

These limitations have been number one source of feature requests and
user complaints (e.g., #564, #524, #509, #510, #232). The core team also
considers solving these limitations as a natural evolution of the UI.

## Problem statement

* Scale the UX to support displaying and editing all current and future
Kubernetes resources (e.g., replica sets, daemon sets, container, nodes,
volumes, secrets, deployments, etc.).
* Scale for the number of objects displayed (currently: cards are suitable for
O(20), desired: show any number of objects).
* Guide users through use-case based views (don't just do API dump).
* Make the UI aware of namespaces and multi-cluster installations.

# Design
The design is based on a few novelties to the UX of Kubernetes Dashboard. This
is:
* introduction of use-case based navigation menu and views
* replacement of free-form cards by tabularized resource lists
* being explicit about Kubernetes resources displayed in the UI
* introduction of action bar for performing all actions on resources

## Navigation
Navigation is realized by left hand side menu. The menu consists of use case
driven categories that group Kubernetes resources. For example, there may be
category called "Apps" which deals with Replication Controllers, Pods,
Deployments, etc., and "Config" which deals with Secrets, Volumes,
Namespaces, etc. The exact definition of categories will happen in a separate
design.

![Navigation](mockups/23-03-2016-scale-and-navigation/navigation.png)

Menu categories may be expanded into raw resource subpages for expert users.

![Menu extended](mockups/23-03-2016-scale-and-navigation/menu-extended.png)

Menu follows standard responsiveness practises where it folds into icons and
hamburger menu when space is limited.

![Mobile navigation](mockups/23-03-2016-scale-and-navigation/mobile-navigation.png)

## View templates

This section shows concepts used as templates for all views.

View which does not deal with a resource or a resource list, e.g., landing
page which shows an overview of a cluster. The page consists of, potentially
dismissable, blocks that display data.
![Landing page](mockups/23-03-2016-scale-and-navigation/landing-page.png)

Category view which shows lists of resources. In this mockup it is
(not defined yet) "Apps" category which was selected through the
navigation menu.
![Category page template](mockups/23-03-2016-scale-and-navigation/category-page-template.png)

Action bar replaces floating action button. The reason for this change
is the fact that floating action buttons do not work well on desktop
form factors, which are used by vast majority of our users. On the other
hand, action bars work well on any form factors (desktop, mobile)
and can scale for different actions on different resources.
![Action bar](mockups/23-03-2016-scale-and-navigation/action-bar.png)

Details of the resource list block:
![Resource list block](mockups/23-03-2016-scale-and-navigation/resource-list-block.png)

While the concept of cards used for displaying resources has some nice
characteristics (like information density) it has been a constant source of
problems. Users and developers complained about many issues: how do you sort
cards? how do you change their order? how do you paginate them? how do you
compare resources against each other? how do you distinct different resources
in a card stream? how do you do bulk operations?

We have identified that in order to solve these problems the cards can evolve
into tabularized list items which can show exactly the same information as
cards. This solution has many advantages, some of which are: pagination,
ordering, bulk actions or visual comparison. Following mockup outlines
the evolution:
![Card evolution](mockups/23-03-2016-scale-and-navigation/card-evolution.png)

Category views link to single resource views which show an unbounded list
of resources of single type (e.g., Replica Sets) and a short summary/
call to action block.
![Single resource page template](mockups/23-03-2016-scale-and-navigation/single-resource-page-template.png)

Details of an individual resource instance are shown on a views which displays
its properites and all related objects (e.g., Services that target a Pod).
![Details page template](mockups/23-03-2016-scale-and-navigation/details-page-template.png)

## Concrete pages
This section shows how templates proposed in the "View templates" section
can be applied to real examples.

"Apps" category:
![Apps category](mockups/23-03-2016-scale-and-navigation/apps-category.png)

Replication Controller list under "Apps" category:
![Replication controllers](mockups/23-03-2016-scale-and-navigation/rc-page.png)

Pod details overview:
![Pod details overview](mockups/23-03-2016-scale-and-navigation/pod-details-page-overview.png)

Pod details events:
![Pod details events](mockups/23-03-2016-scale-and-navigation/pod-details-page-events.png)

Pod details logs:
![Pod details logs](mockups/23-03-2016-scale-and-navigation/pod-details-page-logs.png)

Pod details SSH tab:
![Pod details ssh](mockups/23-03-2016-scale-and-navigation/pod-details-page-ssh.png)

Replication Controller details overview:
![Replication controller details overview](mockups/23-03-2016-scale-and-navigation/rc-details-page-overview.png)

Replication Controller details events:
![Replication controller details events](mockups/23-03-2016-scale-and-navigation/rc-details-page-events.png)

## Credits
[Source code](mockups/23-03-2016-scale-and-navigation/dashboard-scale-and-navigation.bmpr)
of the mockups.

Proposed by [@bryk](https://github.com/bryk),
[@cheld](https://github.com/cheld),
[@digitalfishpond](https://github.com/digitalfishpond),
[@floreks](https://github.com/floreks),
[@maciaszczykm](https://github.com/maciaszczykm),
[@olekzabl](https://github.com/olekzabl),
[@zreigz](https://github.com/zreigz) during 23-03-2016 design sprint day
([report](sprints/scale_ux_20160323.md)).

0 comments on commit 5d2f22d

Please sign in to comment.