Skip to content

Commit 39f3812

Browse files
author
Hugues Morisset
committed
Revert "Remove VC product line"
This reverts commit e84c97f.
1 parent 3e331e2 commit 39f3812

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ Options:
6969
--engine-opt [--engine-opt option --engine-opt option] Specify arbitrary flags to include with the created engine in the form flag=value
7070
--engine-registry-mirror [--engine-registry-mirror option --engine-registry-mirror option] Specify registry mirrors to use [$ENGINE_REGISTRY_MIRROR]
7171
--engine-storage-driver Specify a storage driver to use with the engine
72-
--scaleway-commercial-type "START1-S" Specifies the commercial type [$SCALEWAY_COMMERCIAL_TYPE]
72+
--scaleway-commercial-type "VC1S" Specifies the commercial type [$SCALEWAY_COMMERCIAL_TYPE]
7373
--scaleway-debug Enables Scaleway client debugging [$SCALEWAY_DEBUG]
7474
--scaleway-image "ubuntu-xenial" Specifies the image [$SCALEWAY_IMAGE]
7575
--scaleway-bootscript "docker" Specifies the bootscript [$SCALEWAY_BOOTSCRIPT]
@@ -154,7 +154,7 @@ $ curl --silent http://212.47.248.251 | head -n1 # you can also open your browse
154154
|``--scaleway-organization`` or ``$SCALEWAY_ORGANIZATION`` |Organization UUID |none |yes |
155155
|``--scaleway-token`` or ``$SCALEWAY_TOKEN`` |Token UUID |none |yes |
156156
|``--scaleway-name`` or ``$SCALEWAY_NAME`` |Server name |none |no |
157-
|``--scaleway-commercial-type`` or ``$SCALEWAY_COMMERCIAL_TYPE`` |Commercial type |START1-S |no |
157+
|``--scaleway-commercial-type`` or ``$SCALEWAY_COMMERCIAL_TYPE`` |Commercial type |VC1S |no |
158158
|``--scaleway-image`` or ``$SCALEWAY_IMAGE`` |Server image |ubuntu-xenial |no |
159159
|``--scaleway-region`` or ``$SCALEWAY_REGION`` |Specify the location |par1 |no |
160160
|``--scaleway-debug`` or ``$SCALEWAY_DEBUG`` |Toggle debugging |false |no |
@@ -171,28 +171,28 @@ $ curl --silent http://212.47.248.251 | head -n1 # you can also open your browse
171171
# create a Scaleway docker host
172172
docker-machine create -d scaleway my-scaleway-docker-machine
173173

174-
# create a START1-M server, name it my-docker-machine-1 on Scaleway and my-docker1 in the local Docker machine, with debug enabled
174+
# create a VC1M server, name it my-docker-machine-1 on Scaleway and my-docker1 in the local Docker machine, with debug enabled
175175
docker-machine create -d scaleway \
176176
--scaleway-name="my-docker-machine-1" --scaleway-debug \
177-
--scaleway-commercial-type="START1-M" --scaleway-volumes="50G" \
177+
--scaleway-commercial-type="VC1M" --scaleway-volumes="50G" \
178178
my-docker1
179179

180-
# create a swarm master on a START1-M
180+
# create a swarm master on a VC1M
181181
docker-machine create -d scaleway \
182-
--scaleway-commercial-type="START1-M" --scaleway-volumes="50G" \
182+
--scaleway-commercial-type="VC1M" --scaleway-volumes="50G" \
183183
--swarm --swarm-master --swarm-discovery="XXX"
184184
my-swarm-manager
185185

186-
# create a swarm slave on a START1-S
186+
# create a swarm slave on a VC1S
187187
docker-machine create -d scaleway \
188-
--scaleway-commercial-type="START1-S" \
188+
--scaleway-commercial-type="VC1S" \
189189
--swarm --swarm-discovery="XXX"
190190
my-swarm-node
191191

192192
# create a docker host on the different server offers
193-
docker-machine create -d scaleway --scaleway-commercial-type="START1-S" my-start1-s-node
194-
docker-machine create -d scaleway --scaleway-commercial-type="START1-M" --scaleway-volumes="50G" my-start1-m-node
195-
docker-machine create -d scaleway --scaleway-commercial-type="START1-L" --scaleway-volumes="100G" my-start1-l-node
193+
docker-machine create -d scaleway --scaleway-commercial-type="VC1S" my-vc1s-node
194+
docker-machine create -d scaleway --scaleway-commercial-type="VC1M" --scaleway-volumes="50G" my-vc1m-node
195+
docker-machine create -d scaleway --scaleway-commercial-type="VC1L" --scaleway-volumes="100G" my-vc1l-node
196196
docker-machine create -d scaleway --scaleway-commercial-type="C2S" my-c2s-node
197197
docker-machine create -d scaleway --scaleway-commercial-type="C2M" my-c2m-node
198198
docker-machine create -d scaleway --scaleway-commercial-type="C2L" my-c2l-node

driver/scaleway.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ func (d *Driver) GetCreateFlags() []mcnflag.Flag {
133133
EnvVar: "SCALEWAY_COMMERCIAL_TYPE",
134134
Name: "scaleway-commercial-type",
135135
Usage: "Specifies the commercial type",
136-
Value: "START1-S",
136+
Value: "VC1S",
137137
},
138138
mcnflag.StringFlag{
139139
EnvVar: "SCALEWAY_REGION",

0 commit comments

Comments
 (0)