|
@@ -1,6 +1,9 @@
|
|
|
package node
|
|
|
|
|
|
import (
|
|
|
+ "errors"
|
|
|
+
|
|
|
+ "github.com/docker/docker/api/types"
|
|
|
"github.com/docker/docker/cli"
|
|
|
"github.com/docker/docker/cli/command"
|
|
|
apiclient "github.com/docker/docker/client"
|
|
@@ -38,6 +41,16 @@ func Reference(ctx context.Context, client apiclient.APIClient, ref string) (str
|
|
|
if err != nil {
|
|
|
return "", err
|
|
|
}
|
|
|
+ if info.Swarm.NodeID == "" {
|
|
|
+ // If there's no node ID in /info, the node probably
|
|
|
+ // isn't a manager. Call a swarm-specific endpoint to
|
|
|
+ // get a more specific error message.
|
|
|
+ _, err = client.NodeList(ctx, types.NodeListOptions{})
|
|
|
+ if err != nil {
|
|
|
+ return "", err
|
|
|
+ }
|
|
|
+ return "", errors.New("node ID not found in /info")
|
|
|
+ }
|
|
|
return info.Swarm.NodeID, nil
|
|
|
}
|
|
|
return ref, nil
|