Skip to content

Commit

Permalink
Merge pull request #2914 from nepomucen/kinder-docker-ps-cmd-fmt
Browse files Browse the repository at this point in the history
kinder: compatible with Docker CLI 24.0.5+
  • Loading branch information
k8s-ci-robot authored Aug 7, 2023
2 parents 64e7a15 + 649460b commit 9cad736
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions kinder/pkg/cluster/status/cluster.go
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@ const (
func ListClusters() ([]string, error) {
cmd := exec.NewHostCmd("docker",
"ps",
"-q", // quiet output for parsing
"-a", // show stopped nodes
"--no-trunc", // don't truncate
// filter for nodes with the cluster label
Expand Down Expand Up @@ -160,7 +159,6 @@ func (c *Cluster) KubeConfigPath() string {
func (c *Cluster) listNodes() ([]string, error) {
cmd := exec.NewHostCmd("docker",
"ps",
"-q", // quiet output for parsing
"-a", // show stopped nodes
"--no-trunc", // don't truncate
// filter for nodes with the cluster label
Expand Down

0 comments on commit 9cad736

Please sign in to comment.