From 316ae2947cfa0a34a6a4f6bcadfd65befd9356ba Mon Sep 17 00:00:00 2001 From: Mike Lang Date: Wed, 19 Jul 2017 11:16:59 -0700 Subject: [PATCH] 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 --- report/report.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/report/report.go b/report/report.go index 5d8d3e7e1..9cd6c6908 100644 --- a/report/report.go +++ b/report/report.go @@ -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().