mirror of https://github.com/docker/cli.git
Add namespace column for docker stack ls command while targeting Kubernetes orchestrator
Signed-off-by: Silvin Lubecki <silvin.lubecki@docker.com>
This commit is contained in:
parent
31dccfffb5
commit
65526a201f
|
@ -5,10 +5,14 @@ import (
|
|||
)
|
||||
|
||||
const (
|
||||
defaultStackTableFormat = "table {{.Name}}\t{{.Services}}\t{{.Orchestrator}}"
|
||||
// KubernetesStackTableFormat is the default Kubernetes stack format
|
||||
KubernetesStackTableFormat = "table {{.Name}}\t{{.Services}}\t{{.Orchestrator}}\t{{.Namespace}}"
|
||||
// SwarmStackTableFormat is the default Swarm stack format
|
||||
SwarmStackTableFormat = "table {{.Name}}\t{{.Services}}\t{{.Orchestrator}}"
|
||||
|
||||
stackServicesHeader = "SERVICES"
|
||||
stackOrchestrastorHeader = "ORCHESTRATOR"
|
||||
stackNamespaceHeader = "NAMESPACE"
|
||||
)
|
||||
|
||||
// Stack contains deployed stack information.
|
||||
|
@ -17,17 +21,10 @@ type Stack struct {
|
|||
Name string
|
||||
// Services is the number of the services
|
||||
Services int
|
||||
// Orchestratort is the platform on which the stack is deployed
|
||||
// Orchestrator is the platform where the stack is deployed
|
||||
Orchestrator string
|
||||
}
|
||||
|
||||
// NewStackFormat returns a format for use with a stack Context
|
||||
func NewStackFormat(source string) Format {
|
||||
switch source {
|
||||
case TableFormatKey:
|
||||
return defaultStackTableFormat
|
||||
}
|
||||
return Format(source)
|
||||
// Namespace is the Kubernetes namespace assigned to the stack
|
||||
Namespace string
|
||||
}
|
||||
|
||||
// StackWrite writes formatted stacks using the Context
|
||||
|
@ -54,6 +51,7 @@ func newStackContext() *stackContext {
|
|||
"Name": nameHeader,
|
||||
"Services": stackServicesHeader,
|
||||
"Orchestrator": stackOrchestrastorHeader,
|
||||
"Namespace": stackNamespaceHeader,
|
||||
}
|
||||
return &stackCtx
|
||||
}
|
||||
|
@ -73,3 +71,7 @@ func (s *stackContext) Services() string {
|
|||
func (s *stackContext) Orchestrator() string {
|
||||
return s.s.Orchestrator
|
||||
}
|
||||
|
||||
func (s *stackContext) Namespace() string {
|
||||
return s.s.Namespace
|
||||
}
|
||||
|
|
|
@ -26,14 +26,22 @@ func TestStackContextWrite(t *testing.T) {
|
|||
},
|
||||
// Table format
|
||||
{
|
||||
Context{Format: NewStackFormat("table")},
|
||||
Context{Format: Format(SwarmStackTableFormat)},
|
||||
`NAME SERVICES ORCHESTRATOR
|
||||
baz 2 orchestrator1
|
||||
bar 1 orchestrator2
|
||||
`,
|
||||
},
|
||||
// Kubernetes table format adds Namespace column
|
||||
{
|
||||
Context{Format: NewStackFormat("table {{.Name}}")},
|
||||
Context{Format: Format(KubernetesStackTableFormat)},
|
||||
`NAME SERVICES ORCHESTRATOR NAMESPACE
|
||||
baz 2 orchestrator1 namespace1
|
||||
bar 1 orchestrator2 namespace2
|
||||
`,
|
||||
},
|
||||
{
|
||||
Context{Format: Format("table {{.Name}}")},
|
||||
`NAME
|
||||
baz
|
||||
bar
|
||||
|
@ -41,7 +49,7 @@ bar
|
|||
},
|
||||
// Custom Format
|
||||
{
|
||||
Context{Format: NewStackFormat("{{.Name}}")},
|
||||
Context{Format: Format("{{.Name}}")},
|
||||
`baz
|
||||
bar
|
||||
`,
|
||||
|
@ -49,8 +57,8 @@ bar
|
|||
}
|
||||
|
||||
stacks := []*Stack{
|
||||
{Name: "baz", Services: 2, Orchestrator: "orchestrator1"},
|
||||
{Name: "bar", Services: 1, Orchestrator: "orchestrator2"},
|
||||
{Name: "baz", Services: 2, Orchestrator: "orchestrator1", Namespace: "namespace1"},
|
||||
{Name: "bar", Services: 1, Orchestrator: "orchestrator2", Namespace: "namespace2"},
|
||||
}
|
||||
for _, testcase := range cases {
|
||||
out := bytes.NewBufferString("")
|
||||
|
|
|
@ -37,6 +37,7 @@ func stackFromV1beta1(in *v1beta1.Stack) (stack, error) {
|
|||
}
|
||||
return stack{
|
||||
name: in.ObjectMeta.Name,
|
||||
namespace: in.ObjectMeta.Namespace,
|
||||
composeFile: in.Spec.ComposeFile,
|
||||
spec: fromComposeConfig(ioutil.Discard, cfg),
|
||||
}, nil
|
||||
|
@ -55,8 +56,9 @@ func stackToV1beta1(s stack) *v1beta1.Stack {
|
|||
|
||||
func stackFromV1beta2(in *v1beta2.Stack) stack {
|
||||
return stack{
|
||||
name: in.ObjectMeta.Name,
|
||||
spec: in.Spec,
|
||||
name: in.ObjectMeta.Name,
|
||||
namespace: in.ObjectMeta.Namespace,
|
||||
spec: in.Spec,
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -16,12 +16,12 @@ func RunList(dockerCli *KubeCli, opts options.List) error {
|
|||
return err
|
||||
}
|
||||
format := opts.Format
|
||||
if len(format) == 0 {
|
||||
format = formatter.TableFormatKey
|
||||
if format == "" || format == formatter.TableFormatKey {
|
||||
format = formatter.KubernetesStackTableFormat
|
||||
}
|
||||
stackCtx := formatter.Context{
|
||||
Output: dockerCli.Out(),
|
||||
Format: formatter.NewStackFormat(format),
|
||||
Format: formatter.Format(format),
|
||||
}
|
||||
sort.Sort(byName(stacks))
|
||||
return formatter.StackWrite(stackCtx, stacks)
|
||||
|
@ -51,6 +51,7 @@ func getStacks(kubeCli *KubeCli) ([]*formatter.Stack, error) {
|
|||
Name: stack.name,
|
||||
Services: len(stack.getServices()),
|
||||
Orchestrator: "Kubernetes",
|
||||
Namespace: stack.namespace,
|
||||
})
|
||||
}
|
||||
return formattedStacks, nil
|
||||
|
|
|
@ -15,6 +15,7 @@ import (
|
|||
// stack is the main type used by stack commands so they remain independent from kubernetes compose component version.
|
||||
type stack struct {
|
||||
name string
|
||||
namespace string
|
||||
composeFile string
|
||||
spec *v1beta2.StackSpec
|
||||
}
|
||||
|
|
|
@ -24,12 +24,12 @@ func RunList(dockerCli command.Cli, opts options.List) error {
|
|||
return err
|
||||
}
|
||||
format := opts.Format
|
||||
if len(format) == 0 {
|
||||
format = formatter.TableFormatKey
|
||||
if format == "" || format == formatter.TableFormatKey {
|
||||
format = formatter.SwarmStackTableFormat
|
||||
}
|
||||
stackCtx := formatter.Context{
|
||||
Output: dockerCli.Out(),
|
||||
Format: formatter.NewStackFormat(format),
|
||||
Format: formatter.Format(format),
|
||||
}
|
||||
sort.Sort(byName(stacks))
|
||||
return formatter.StackWrite(stackCtx, stacks)
|
||||
|
|
|
@ -55,6 +55,7 @@ Valid placeholders for the Go template are listed below:
|
|||
| `.Name` | Stack name |
|
||||
| `.Services` | Number of services |
|
||||
| `.Orchestrator` | Orchestrator name |
|
||||
| `.Namespace` | Namespace |
|
||||
|
||||
When using the `--format` option, the `stack ls` command either outputs
|
||||
the data exactly as the template declares or, when using the
|
||||
|
|
Loading…
Reference in New Issue