@@ -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
172172docker-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
175175docker-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
181181docker-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
187187docker-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
196196docker-machine create -d scaleway --scaleway-commercial-type=" C2S" my-c2s-node
197197docker-machine create -d scaleway --scaleway-commercial-type=" C2M" my-c2m-node
198198docker-machine create -d scaleway --scaleway-commercial-type=" C2L" my-c2l-node
0 commit comments