Fiddle with k8s topology shapes again

Final list of shapes for controllers view, with rationale:
Heptagon for Deployment - same shape as Service, which typically have a corresponding Deployment
Triangle for CronJob - weird shape for weird thing
Pentagon for DaemonSet - because pentagons and daemon worship :P
Octagon for StatefulSet - last shape left
This commit is contained in:
Mike Lang
2017-07-19 11:16:59 -07:00
parent 38814d54a6
commit 316ae2947c

View File

@@ -178,7 +178,7 @@ func MakeReport() Report {
WithLabel("service", "services"),
Deployment: MakeTopology().
WithShape(Octagon).
WithShape(Heptagon).
WithLabel("deployment", "deployments"),
ReplicaSet: MakeTopology().
@@ -190,7 +190,7 @@ func MakeReport() Report {
WithLabel("daemonset", "daemonsets"),
StatefulSet: MakeTopology().
WithShape(Triangle).
WithShape(Octagon).
WithLabel("stateful set", "stateful sets"),
CronJob: MakeTopology().