@@ -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 "VC1S " Specifies the commercial type [$SCALEWAY_COMMERCIAL_TYPE]
72+ --scaleway-commercial-type "START1-S " 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-ip Specifies the IP address [$SCALEWAY_IP]
@@ -153,7 +153,7 @@ $ curl --silent http://212.47.248.251 | head -n1 # you can also open your browse
153153| `` --scaleway-organization `` or `` $SCALEWAY_ORGANIZATION `` | Organization UUID | none | yes |
154154| `` --scaleway-token `` or `` $SCALEWAY_TOKEN `` | Token UUID | none | yes |
155155| `` --scaleway-name `` or `` $SCALEWAY_NAME `` | Server name | none | no |
156- | `` --scaleway-commercial-type `` or `` $SCALEWAY_COMMERCIAL_TYPE `` | Commercial type | VC1S | no |
156+ | `` --scaleway-commercial-type `` or `` $SCALEWAY_COMMERCIAL_TYPE `` | Commercial type | START1-S | no |
157157| `` --scaleway-image `` or `` $SCALEWAY_IMAGE `` | Server image | ubuntu-xenial | no |
158158| `` --scaleway-region `` or `` $SCALEWAY_REGION `` | Specify the location | par1 | no |
159159| `` --scaleway-debug `` or `` $SCALEWAY_DEBUG `` | Toggle debugging | false | no |
@@ -170,28 +170,28 @@ $ curl --silent http://212.47.248.251 | head -n1 # you can also open your browse
170170# create a Scaleway docker host
171171docker-machine create -d scaleway my-scaleway-docker-machine
172172
173- # create a VC1M server, name it my-docker-machine-1 on Scaleway and my-docker1 in the local Docker machine, with debug enabled
173+ # create a START1-M server, name it my-docker-machine-1 on Scaleway and my-docker1 in the local Docker machine, with debug enabled
174174docker-machine create -d scaleway \
175175 --scaleway-name=" my-docker-machine-1" --scaleway-debug \
176- --scaleway-commercial-type=" VC1M " --scaleway-volumes=" 50G" \
176+ --scaleway-commercial-type=" START1-M " --scaleway-volumes=" 50G" \
177177 my-docker1
178178
179- # create a swarm master on a VC1M
179+ # create a swarm master on a START1-M
180180docker-machine create -d scaleway \
181- --scaleway-commercial-type=" VC1M " --scaleway-volumes=" 50G" \
181+ --scaleway-commercial-type=" START1-M " --scaleway-volumes=" 50G" \
182182 --swarm --swarm-master --swarm-discovery=" XXX"
183183 my-swarm-manager
184184
185- # create a swarm slave on a VC1S
185+ # create a swarm slave on a START1-S
186186docker-machine create -d scaleway \
187- --scaleway-commercial-type=" VC1S " \
187+ --scaleway-commercial-type=" START1-S " \
188188 --swarm --swarm-discovery=" XXX"
189189 my-swarm-node
190190
191191# create a docker host on the different server offers
192- docker-machine create -d scaleway --scaleway-commercial-type=" VC1S " my-vc1s -node
193- docker-machine create -d scaleway --scaleway-commercial-type=" VC1M " --scaleway-volumes=" 50G" my-vc1m -node
194- docker-machine create -d scaleway --scaleway-commercial-type=" VC1L " --scaleway-volumes=" 100G" my-vc1l -node
192+ docker-machine create -d scaleway --scaleway-commercial-type=" START1-S " my-start1-s -node
193+ docker-machine create -d scaleway --scaleway-commercial-type=" START1-M " --scaleway-volumes=" 50G" my-start1-m -node
194+ docker-machine create -d scaleway --scaleway-commercial-type=" START1-L " --scaleway-volumes=" 100G" my-start1-l -node
195195docker-machine create -d scaleway --scaleway-commercial-type=" C2S" my-c2s-node
196196docker-machine create -d scaleway --scaleway-commercial-type=" C2M" my-c2m-node
197197docker-machine create -d scaleway --scaleway-commercial-type=" C2L" my-c2l-node
0 commit comments