Skip to content

Commit ab21e21

Browse files
authored
Merge pull request #2594 from yankay/fix-format-names
Fix `nerdctl ps --format {{.Names}} ` behaviour
2 parents 5486dd7 + caea0f9 commit ab21e21

File tree

3 files changed

+21
-7
lines changed

3 files changed

+21
-7
lines changed

cmd/nerdctl/container_list.go

+1-5
Original file line numberDiff line numberDiff line change
@@ -202,10 +202,6 @@ func formatAndPrintContainerInfo(containers []container.ListItem, options Format
202202
return err
203203
}
204204
} else {
205-
var name string
206-
if len(c.Names) > 0 {
207-
name = c.Names[0]
208-
}
209205
format := "%s\t%s\t%s\t%s\t%s\t%s\t%s"
210206
args := []interface{}{
211207
c.ID,
@@ -214,7 +210,7 @@ func formatAndPrintContainerInfo(containers []container.ListItem, options Format
214210
formatter.TimeSinceInHuman(c.CreatedAt),
215211
c.Status,
216212
c.Ports,
217-
name,
213+
c.Names,
218214
}
219215
if wide {
220216
format += "\t%s\t%s\t%s\n"

cmd/nerdctl/container_list_linux_test.go

+18
Original file line numberDiff line numberDiff line change
@@ -223,6 +223,24 @@ func TestContainerListWithLabels(t *testing.T) {
223223
})
224224
}
225225

226+
func TestContainerListWithNames(t *testing.T) {
227+
base, testContainer := preparePsTestContainer(t, "listWithNames", true)
228+
229+
// hope there are no tests running parallel
230+
base.Cmd("ps", "-n", "1", "--format", "{{.Names}}").AssertOutWithFunc(func(stdout string) error {
231+
232+
// An example of nerdctl ps --format "{{.Names}}"
233+
lines := strings.Split(strings.TrimSpace(stdout), "\n")
234+
if len(lines) != 1 {
235+
return fmt.Errorf("expected 1 line, got %d", len(lines))
236+
}
237+
238+
assert.Equal(t, lines[0], testContainer.name)
239+
240+
return nil
241+
})
242+
}
243+
226244
func TestContainerListWithFilter(t *testing.T) {
227245
base, testContainerA := preparePsTestContainer(t, "listWithFilterA", true)
228246
_, testContainerB := preparePsTestContainer(t, "listWithFilterB", true)

pkg/cmd/container/list.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ type ListItem struct {
9292
ID string
9393
Image string
9494
Platform string // nerdctl extension
95-
Names []string
95+
Names string
9696
Ports string
9797
Status string
9898
Runtime string // nerdctl extension
@@ -130,7 +130,7 @@ func prepareContainers(ctx context.Context, client *containerd.Client, container
130130
ID: id,
131131
Image: info.Image,
132132
Platform: info.Labels[labels.Platform],
133-
Names: []string{getContainerName(info.Labels)},
133+
Names: getContainerName(info.Labels),
134134
Ports: formatter.FormatPorts(info.Labels),
135135
Status: formatter.ContainerStatus(ctx, c),
136136
Runtime: info.Runtime.Name,

0 commit comments

Comments
 (0)