Skip to content

Commit c236fb3

Browse files
authored
fix(docs): respond to client feedback (#4123)
1 parent 17acb83 commit c236fb3

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

faq/elastic-metal.mdx

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,6 +156,10 @@ Each failover IP consists of a `/64` IPv6 subnet (18,446,744,073,709,551,616 IPv
156156

157157
Yes, Elastic Metal servers are delivered with an IPv6 address (/128) preconfigured.
158158

159+
### Can I attach Block Storage volumes to my Elastic Metal server?
160+
161+
Elastic Metal is not currently compatible with Block Storage, but this functionality is planned for the future.
162+
159163
## Windows Server specific questions
160164

161165
### Is Windows available on Elastic Metal?
@@ -184,4 +188,5 @@ After installing the OS, you can manually enable Hyper-V roles from the Roles an
184188

185189
### How many virtual machines can I install under Hyper-V?
186190

187-
Hyper-V is a hypervisor for hosting virtual machines. The Standard version of Microsoft Server allows you to install 2 virtual machines per host (per Elastic Metal server). The number of virtual machines (VM) on the Datacenter version is unlimited.
191+
Hyper-V is a hypervisor for hosting virtual machines. The Standard version of Microsoft Server allows you to install 2 virtual machines per host (per Elastic Metal server). The number of virtual machines (VM) on the Datacenter version is unlimited.
192+

tutorials/deploy-saas-application/index.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,15 +69,15 @@ In all applications, you have to define settings, usually based on environment v
6969
7070
AWS_DEFAULT_ACL = 'public-read'
7171
AWS_LOCATION = 'static'
72-
STATICFILES_STORAGE = 'storages.backends.s3boto3.S3Boto3Storage'
72+
STORAGES = 'storages.backends.s3boto3.S3Boto3Storage'
7373
AWS_S3_SIGNATURE_VERSION = 's3v4'
7474
7575
AWS_S3_HOST = 's3.%s.scw.cloud' % (AWS_S3_REGION_NAME,)
7676
AWS_S3_ENDPOINT_URL = 'https://%s' % (AWS_S3_HOST, )
7777
STATIC_URL = '%s/%s/' % (AWS_S3_ENDPOINT_URL, AWS_LOCATION)
7878
```
7979

80-
Before we look more closely at the variables we just added, further action is required. Since you have a new package (`boto3` in this case) used in the variable `STATICFILES_STORAGE`, you need to follow the next steps:
80+
Before we look more closely at the variables we just added, further action is required. Since you have a new package (`boto3` in this case) used in the variable `STORAGES`, you need to follow the next steps:
8181
3. Add the `boto3` package to your requirements list.
8282
4. Add the `boto3` package (`storages` app) to the list of applications used in your Django project in your `settings.py` file.
8383
```
@@ -94,7 +94,7 @@ In all applications, you have to define settings, usually based on environment v
9494
- `AWS_S3_HOST` and `AWS_S3_ENDPOINT_URL` are the URLs needed to access your Object Storage bucket. They are composed of the previously defined variables.
9595
- `AWS_LOCATION` is the folder that will be created in our Object Storage bucket for our static files
9696
- `STATIC_URL` has changed
97-
- `STATICFILES_STORAGE` defines the new storage class that we want to use, here standard Amazon S3 protocol storage. We now need to give values to our environment values, so that they can be correctly found by `settings.py` via `os.getenv('MY_VAR_NAME')`.
97+
- `STORAGES` defines the new storage class that we want to use, here standard Amazon S3 protocol storage. We now need to give values to our environment values, so that they can be correctly found by `settings.py` via `os.getenv('MY_VAR_NAME')`.
9898

9999
<Message type="note">
100100
Remember that Amazon S3 is a standard protocol. Even though the `boto3` library asks us to prefix variables with `AWS`, it nonetheless works perfectly with Scaleway Object Storage.

0 commit comments

Comments
 (0)