feat: added error to GetContextEndpoint

this ill make the progam not fail if there is a non-docker swarm context
This commit is contained in:
2021-07-18 06:34:22 +01:00
parent a2bb0ed027
commit 37c06c82bf
2 changed files with 15 additions and 4 deletions

View File

@ -26,10 +26,16 @@ var serverListCommand = &cli.Command{
serverNames := config.ReadServerNames()
for _, serverName := range serverNames {
var row []string
for _, ctx := range contexts {
endpoint, err := client.GetContextEndpoint(ctx)
if err != nil {
// This most likely means its a non-docker swarm context and we can ignore
continue
}
if ctx.Name == serverName {
row = []string{serverName, client.GetContextEndpoint(ctx)}
row = []string{serverName, endpoint}
}
}
if len(row) == 0 {