File tree 4 files changed +9
-2
lines changed
4 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -36,6 +36,7 @@ func (lb *LoadBalancer) Cols() []string {
36
36
return []string {
37
37
"ID" ,
38
38
"IP" ,
39
+ "IPv6" ,
39
40
"Name" ,
40
41
"Status" ,
41
42
"Created" ,
@@ -57,6 +58,7 @@ func (lb *LoadBalancer) ColMap() map[string]string {
57
58
return map [string ]string {
58
59
"ID" : "ID" ,
59
60
"IP" : "IP" ,
61
+ "IPv6" : "IPv6" ,
60
62
"Name" : "Name" ,
61
63
"Status" : "Status" ,
62
64
"Created" : "Created At" ,
@@ -107,6 +109,9 @@ func (lb *LoadBalancer) KV() []map[string]any {
107
109
if l .SizeUnit > 0 {
108
110
o ["SizeUnit" ] = l .SizeUnit
109
111
}
112
+ if l .IPv6 != "" {
113
+ o ["IPv6" ] = l .IPv6
114
+ }
110
115
out = append (out , o )
111
116
}
112
117
Original file line number Diff line number Diff line change 5
5
require (
6
6
github.com/blang/semver v3.5.1+incompatible
7
7
github.com/creack/pty v1.1.21
8
- github.com/digitalocean/godo v1.130.1-0.20241119155329-45ad288c38bd
8
+ github.com/digitalocean/godo v1.131.0
9
9
github.com/docker/cli v24.0.5+incompatible
10
10
github.com/docker/docker v25.0.6+incompatible
11
11
github.com/docker/docker-credential-helpers v0.7.0 // indirect
Original file line number Diff line number Diff line change @@ -93,6 +93,8 @@ github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc h1:U9qPSI2PIWSS1
93
93
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc /go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38 =
94
94
github.com/digitalocean/godo v1.130.1-0.20241119155329-45ad288c38bd h1:3TCd+SNAbaRHQSiWmMJWtPitvZt2lTq3th87CxMl9Xo =
95
95
github.com/digitalocean/godo v1.130.1-0.20241119155329-45ad288c38bd /go.mod h1:PU8JB6I1XYkQIdHFop8lLAY9ojp6M0XcU0TWaQSxbrc =
96
+ github.com/digitalocean/godo v1.131.0 h1:0WHymufAV5avpodT0h5/pucUVfO4v7biquOIqhLeROY =
97
+ github.com/digitalocean/godo v1.131.0 /go.mod h1:PU8JB6I1XYkQIdHFop8lLAY9ojp6M0XcU0TWaQSxbrc =
96
98
github.com/distribution/reference v0.6.0 h1:0IXCQ5g4/QMHHkarYzh5l+u8T3t73zM5QvfrDyIgxBk =
97
99
github.com/distribution/reference v0.6.0 /go.mod h1:BbU0aIcezP1/5jX/8MP0YiH4SdvB5Y4f/wlDRiLyi3E =
98
100
github.com/docker/cli v24.0.5+incompatible h1:WeBimjvS0eKdH4Ygx+ihVq1Q++xg36M/rMi4aXAvodc =
Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ github.com/creack/pty
61
61
# github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc
62
62
## explicit
63
63
github.com/davecgh/go-spew/spew
64
- # github.com/digitalocean/godo v1.130.1-0.20241119155329-45ad288c38bd
64
+ # github.com/digitalocean/godo v1.131.0
65
65
## explicit; go 1.22
66
66
github.com/digitalocean/godo
67
67
github.com/digitalocean/godo/metrics
You can’t perform that action at this time.
0 commit comments