@@ -69,7 +69,7 @@ Options:
69
69
--engine-opt [--engine-opt option --engine-opt option] Specify arbitrary flags to include with the created engine in the form flag=value
70
70
--engine-registry-mirror [--engine-registry-mirror option --engine-registry-mirror option] Specify registry mirrors to use [$ENGINE_REGISTRY_MIRROR]
71
71
--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]
73
73
--scaleway-debug Enables Scaleway client debugging [$SCALEWAY_DEBUG]
74
74
--scaleway-image "ubuntu-xenial" Specifies the image [$SCALEWAY_IMAGE]
75
75
--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
154
154
| `` --scaleway-organization `` or `` $SCALEWAY_ORGANIZATION `` | Organization UUID | none | yes |
155
155
| `` --scaleway-token `` or `` $SCALEWAY_TOKEN `` | Token UUID | none | yes |
156
156
| `` --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 |
158
158
| `` --scaleway-image `` or `` $SCALEWAY_IMAGE `` | Server image | ubuntu-xenial | no |
159
159
| `` --scaleway-region `` or `` $SCALEWAY_REGION `` | Specify the location | par1 | no |
160
160
| `` --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
171
171
# create a Scaleway docker host
172
172
docker-machine create -d scaleway my-scaleway-docker-machine
173
173
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
175
175
docker-machine create -d scaleway \
176
176
--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" \
178
178
my-docker1
179
179
180
- # create a swarm master on a START1-M
180
+ # create a swarm master on a VC1M
181
181
docker-machine create -d scaleway \
182
- --scaleway-commercial-type=" START1-M " --scaleway-volumes=" 50G" \
182
+ --scaleway-commercial-type=" VC1M " --scaleway-volumes=" 50G" \
183
183
--swarm --swarm-master --swarm-discovery=" XXX"
184
184
my-swarm-manager
185
185
186
- # create a swarm slave on a START1-S
186
+ # create a swarm slave on a VC1S
187
187
docker-machine create -d scaleway \
188
- --scaleway-commercial-type=" START1-S " \
188
+ --scaleway-commercial-type=" VC1S " \
189
189
--swarm --swarm-discovery=" XXX"
190
190
my-swarm-node
191
191
192
192
# 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
196
196
docker-machine create -d scaleway --scaleway-commercial-type=" C2S" my-c2s-node
197
197
docker-machine create -d scaleway --scaleway-commercial-type=" C2M" my-c2m-node
198
198
docker-machine create -d scaleway --scaleway-commercial-type=" C2L" my-c2l-node
0 commit comments