Skip to content

Commit 76531fb

Browse files
authored
fix(instance): volume_total_size should be a uint64 (#2553)
1 parent d963e7c commit 76531fb

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

cmd/scw/testdata/test-all-usage-instance-server-usage.golden

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ Different instance ranges are proposed:
1313
Refer to the [Development Instance offer details](https://www.scaleway.com/en/virtual-instances/play2/)
1414
for more information.
1515

16-
* The General Purpose instances range is the solution for production workloads. Powerful
16+
* The **General Purpose** instances range is the solution for production workloads. Powerful
1717
AMD EPYC CPUs back those instances and offer up to 48 Cores, 256GB of RAM and storage
1818
options up to 600GB of replicated local NVMe SSD storage and/or up to 10TB of Block Storage.
1919
Refer to the [General Purpose offer details](https://www.scaleway.com/en/virtual-instances/pro2/) for more information.
2020

21-
* The Enterprise instances range is the solution for most demanding workloads and
21+
* The **Enterprise** instances range is the solution for most demanding workloads and
2222
mission-critical applications. Powerful AMD EPYC CPUs back those instances and
2323
offer up to 96 Cores, 384GB of RAM and up to 10TB of Block Storage. Refer to the
2424
[Enterprise offer details](https://www.scaleway.com/en/virtual-instances/enterprise/) for more information.

docs/commands/instance.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1199,12 +1199,12 @@ Different instance ranges are proposed:
11991199
Refer to the [Development Instance offer details](https://www.scaleway.com/en/virtual-instances/play2/)
12001200
for more information.
12011201

1202-
* The General Purpose instances range is the solution for production workloads. Powerful
1202+
* The **General Purpose** instances range is the solution for production workloads. Powerful
12031203
AMD EPYC CPUs back those instances and offer up to 48 Cores, 256GB of RAM and storage
12041204
options up to 600GB of replicated local NVMe SSD storage and/or up to 10TB of Block Storage.
12051205
Refer to the [General Purpose offer details](https://www.scaleway.com/en/virtual-instances/pro2/) for more information.
12061206

1207-
* The Enterprise instances range is the solution for most demanding workloads and
1207+
* The **Enterprise** instances range is the solution for most demanding workloads and
12081208
mission-critical applications. Powerful AMD EPYC CPUs back those instances and
12091209
offer up to 96 Cores, 384GB of RAM and up to 10TB of Block Storage. Refer to the
12101210
[Enterprise offer details](https://www.scaleway.com/en/virtual-instances/enterprise/) for more information.

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ require (
1818
github.com/kubernetes-client/go-base v0.0.0-20190205182333-3d0e39759d98
1919
github.com/mattn/go-colorable v0.1.13
2020
github.com/mattn/go-isatty v0.0.16
21-
github.com/scaleway/scaleway-sdk-go v1.0.0-beta.9.0.20221012084737-e8748edafbbd
21+
github.com/scaleway/scaleway-sdk-go v1.0.0-beta.9.0.20221018115351-2508d848e512
2222
github.com/spf13/cobra v1.6.0
2323
github.com/spf13/pflag v1.0.5
2424
github.com/stretchr/testify v1.8.0

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,8 @@ github.com/pkg/term v1.1.0/go.mod h1:E25nymQcrSllhX42Ok8MRm1+hyBdHY0dCeiKZ9jpNGw
7171
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
7272
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
7373
github.com/russross/blackfriday/v2 v2.1.0/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM=
74-
github.com/scaleway/scaleway-sdk-go v1.0.0-beta.9.0.20221012084737-e8748edafbbd h1:djeSgBn/U5Lv2x01m/ExqwbV6LhpoyndTEU8SLtTIVs=
75-
github.com/scaleway/scaleway-sdk-go v1.0.0-beta.9.0.20221012084737-e8748edafbbd/go.mod h1:fCa7OJZ/9DRTnOKmxvT6pn+LPWUptQAmHF/SBJUGEcg=
74+
github.com/scaleway/scaleway-sdk-go v1.0.0-beta.9.0.20221018115351-2508d848e512 h1:nfobEVAnoUj78XfqBoWTxvbA4QroRrjZPZcO+I1s9F4=
75+
github.com/scaleway/scaleway-sdk-go v1.0.0-beta.9.0.20221018115351-2508d848e512/go.mod h1:fCa7OJZ/9DRTnOKmxvT6pn+LPWUptQAmHF/SBJUGEcg=
7676
github.com/sergi/go-diff v1.2.0 h1:XU+rvMAioB0UC3q1MFrIQy4Vo5/4VsRDQQXHsEya6xQ=
7777
github.com/sergi/go-diff v1.2.0/go.mod h1:STckp+ISIX8hZLjrqAeVduY0gWCT9IjLuqbuNXdaHfM=
7878
github.com/spf13/cobra v1.6.0 h1:42a0n6jwCot1pUmomAp4T7DeMD+20LFv4Q54pxLf2LI=

internal/namespaces/instance/v1/instance_cli.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -165,12 +165,12 @@ Different instance ranges are proposed:
165165
Refer to the [Development Instance offer details](https://www.scaleway.com/en/virtual-instances/play2/)
166166
for more information.
167167
168-
* The General Purpose instances range is the solution for production workloads. Powerful
168+
* The **General Purpose** instances range is the solution for production workloads. Powerful
169169
AMD EPYC CPUs back those instances and offer up to 48 Cores, 256GB of RAM and storage
170170
options up to 600GB of replicated local NVMe SSD storage and/or up to 10TB of Block Storage.
171171
Refer to the [General Purpose offer details](https://www.scaleway.com/en/virtual-instances/pro2/) for more information.
172172
173-
* The Enterprise instances range is the solution for most demanding workloads and
173+
* The **Enterprise** instances range is the solution for most demanding workloads and
174174
mission-critical applications. Powerful AMD EPYC CPUs back those instances and
175175
offer up to 96 Cores, 384GB of RAM and up to 10TB of Block Storage. Refer to the
176176
[Enterprise offer details](https://www.scaleway.com/en/virtual-instances/enterprise/) for more information.

0 commit comments

Comments
 (0)