You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: pages/bare_metal_cloud/dedicated_servers/personal-templates-end-of-life/guide.en-gb.md
+26-26
Original file line number
Diff line number
Diff line change
@@ -8,42 +8,42 @@ updated: 2025-04-28
8
8
9
9
## Context
10
10
11
-
OVHcloud is constantly evolving and must adapt its offerings to the increasingly resilient and regulated cloud market. In order to meet those new challenges the **personal template for dedicated servers OS installation** will be fully decommissioned the **7th of October 2025**.
11
+
OVHcloud is constantly evolving and must adapt its offerings to the increasingly resilient and regulated cloud market. In order to meet those new challenges, **personal templates for dedicated servers OS installation** will be fully decommissioned on the **7th of October 2025**.
12
12
13
-
This service was used to request an OS installation on a dedicated servers by targeting a personal template instead of an operating system with the following elements:
13
+
This feature allowed requesting an OS installation on a dedicated server by using a personal template containing with following elements:
14
14
- operating system to be installed
15
-
- partitioning customization layout,
15
+
- partitioning layout,
16
16
- hardware RAID configuration,
17
17
- hostname,
18
18
- SSH public key,
19
-
- postinstallation script.
19
+
- post-installation script.
20
20
21
21
This decommissioning will be done in 2 steps:
22
22
23
23
### Step 1: 17th of June 2025<aname="step-1"></a>
24
24
25
-
- Customers will no longer be able to **edit** or **add** new personal templates
26
-
- Customers having personal template(s) and active dedicated servers services will receive custom technical informations by email to help them migrate their personal template(s) using the new API call.
25
+
- Customers will no longer be able to **edit** or **add** new personal templates.
26
+
- Customers having personal template(s) and active subscriptions to dedicated servers will receive custom technical information by email to help them migrate their personal template(s) to the new /reinstall API call.
27
27
28
28
### Step 2: 7th of October 2025<aname="step-2"></a>
29
29
30
-
- Customers will no longer be able to access their personal templates
31
-
- All personal templates data will be deleted
30
+
- Customers will no longer be able to access their personal templates.
31
+
- All data related to personal templates will be deleted.
32
32
33
-
Note that customers will still have the email from the 17th of June 2025 with technical documentation based on their personal templates data to migrate to new API call.
33
+
Please note that customers will still have the email from the 17th of June 2025 with technical documentation based on their personal templates data to help them migrate to the new API call.
34
34
35
35
## Instructions
36
36
37
37
The following section contains specific information per usage of the service.
38
38
39
39
### Using OVHcloud, SoYouStart or Kimsufi Control Panel<aname="ux"></a>
40
40
41
-
The `Install one of your templates`{.action} wizard to install an operating system on a dedicated server has already been removed since mid-April. If you were using that wizard you have 3 long-term possibilities:
42
-
- keep using the web graphical interface (not recommended): update your process with screenshots with all the customizations in the OS install wizard (= former `Install from an OVHcloud template`{.action} wizard)
43
-
-move to API (best for automation, but requires programming skills): see section [Using OVHcloud, SoYouStart or Kimsufi API](#api) below.
44
-
- move to the API console (recommended, good tradeoff): update your process with screenshots and links to the console API. Once authenticated, you just need to provide in the documentation the exact JSON payload with the OS installation details. **You will receive the corresponding payloads to your personal templates in the communication of the 17th of June 2025**.
41
+
The `Install one of your templates`{.action} wizard to install an operating system on a dedicated server has already been removed since mid-April 2025. If you were using that wizard you have 3 long-term possibilities:
42
+
- keep using the Web interface (not recommended): manually apply all customizations in the OS install wizard (former `Install from an OVHcloud template`{.action} wizard) every time you need to perform an installation
43
+
-write a script that uses the API (best for automation, but requires programming skills): see section [Using OVHcloud, SoYouStart or Kimsufi API](#api) below.
44
+
- move to the API console (recommended, good tradeoff): Once authenticated, you just need to provide the exact JSON payload with the OS installation details. **You will receive the payloads corresponding to your personal templates in the email communication that will be sent on the 17th of June 2025**.
45
45
46
-
Although you could start exploring by yourself the examples and schemas of the [new API call in the API console](https://eu.api.ovh.com/console/?section=%2Fdedicated%2Fserver&branch=v1#post-/dedicated/server/-serviceName-/reinstall) and look at its [public documentation](/pages/bare_metal_cloud/dedicated_servers/api-os-installation), here is the temporary workaround you can follow in the meantime of the email of the 17th of June 2025.
46
+
Although you could start exploring the examples and schemas of the [new API call in the API console](https://eu.api.ovh.com/console/?section=%2Fdedicated%2Fserver&branch=v1#post-/dedicated/server/-serviceName-/reinstall) and look at its [public documentation](/pages/bare_metal_cloud/dedicated_servers/api-os-installation), here is the temporary workaround you can follow until your receive the payloads in the email of the 17th of June 2025.
47
47
48
48
#### OVHcloud workaround<aname="ux-ovh"></a>
49
49
@@ -60,20 +60,20 @@ Then run the API call to trigger an OS reinstallation from your personal templat
60
60
- Choose `/dedicated/server`{.action} section.
61
61
- Find `POST /dedicated/server/{serviceName}/install/start`{.action} API call (you can use the filter).
62
62
- In the `serviceName` field, enter the name of the dedicated server you want to install.
63
-
- In the `REQUEST BODY` field (aka. API payload), put the following JSON value (in this example we suppose "my-amazing-template" is the name of the personal template you want to install):
63
+
- In the `REQUEST BODY` field (aka. API payload), put the following JSON value (in this example we assume that "my-amazing-template" is the name of the personal template you want to install):
64
64
```json
65
65
{
66
66
"templateName": "my-amazing-template"
67
67
}
68
68
```
69
69
70
-
If you need to list your personal templates and their details, please go to `/me`{.action} section and look at all the `GET` API calls under `/me/installationTemplate`{.action}.
70
+
If you need to list your personal templates and their details, please go to the `/me`{.action} section and look at all the `GET` API calls under `/me/installationTemplate`{.action}.
71
71
72
72
> [!warning]
73
73
> **Performing a [POST /dedicated/server/{serviceName}/install/start](https://eu.api.ovh.com/console/?section=%2Fdedicated%2Fserver&branch=v1#post-/dedicated/server/-serviceName-/install/start) to a dedicated server will erase all the data in that server. PLEASE BE CAREFUL WHILE USING THIS API CALL.**
74
74
>
75
75
76
-
Then click `Execute`{.action} button to start the OS installation.
76
+
Then click the `Execute`{.action} button to start the OS installation.
@@ -83,37 +83,37 @@ You can go back to the [OVHcloud Control Panel](/links/manager) on the dedicated
83
83
84
84
Open the [SoYouStart console API](https://eu.api.soyoustart.com/console/) or the [Kimsufi console API](https://eu.api.kimsufi.com/console/).
85
85
86
-
Click `Login`{.action} on the top right corner and enter your credentials. Then click`Log in`{.action} button: you are now authenticated to the console API.
86
+
Click `Login`{.action} on the top right corner and enter your credentials. Then click the `Log in`{.action} button: you are now authenticated with the API console.
87
87
88
88
- Open the `/dedicated/server`{.action} section.
89
89
- Find the `POST /dedicated/server/{serviceName}/install/start`{.action} API call.
90
90
- In the `serviceName` field, enter the name of the dedicated server you want to install.
91
91
- In the `templateName` field, enter the name of the personal template you want to install.
92
92
93
-
If you need to list your personal templates and their details, please go to `/me`{.action} section and look at all the `GET` API calls under `/me/installationTemplate`{.action}.
93
+
If you need to list your personal templates and their details, please go to the `/me`{.action} section and look at all the `GET` API calls under `/me/installationTemplate`{.action}.
94
94
95
95
> [!warning]
96
96
> **Performing a [POST /dedicated/server/{serviceName}/install/start](https://eu.api.soyoustart.com/console/#/dedicated/server/%7BserviceName%7D/install/start~POST) (or [here](https://eu.api.kimsufi.com/console/#/dedicated/server/%7BserviceName%7D/install/start~POST) for Kimsufi) to a dedicated server will erase all the data in that server. PLEASE BE CAREFUL WHILE USING THIS API CALL.**
97
97
>
98
98
99
-
Then click `Execute`{.action} button to start the OS installation.
99
+
Then click the `Execute`{.action} button to start the OS installation.
100
100
101
101
You can go back to the [SoYouStart](https://eu.soyoustart.com/manager) or [Kimsufi Control Panel](https://www.kimsufi.com/fr/manager) on the dedicated server dashboard page to track the installation progress.
102
102
103
-
### Using OVHcloud, SoYouStart or Kimsufi API<aname="api"></a>
103
+
### Using OVHcloud, SoYouStart or Kimsufi APIs<aname="api"></a>
104
104
105
-
If you are using the OVHcloud, SoYouStart or Kimsufi API to trigger OS installations from a personal template, you can continue using the `POST /dedicated/server/{serviceName}/install/start`{.action} API call until the 7th of October 2025.
106
-
But please note that starting from the 17th of June 2025, you will no longer be able to add or edit personal templates.
105
+
If you are using the OVHcloud, SoYouStart or Kimsufi APIs to trigger OS installations from a personal template, you can continue using the `POST /dedicated/server/{serviceName}/install/start`{.action} API call until **the 7th of October 2025**.
106
+
But please note that starting from **the 17th of June 2025**, you will no longer be able to add or edit personal templates.
107
107
108
-
Although you will receive an email with all the details to migrate your API payloads to the [new API call](https://eu.api.ovh.com/console/?section=%2Fdedicated%2Fserver&branch=v1#post-/dedicated/server/-serviceName-/reinstall), feel free to start exploring by yourself the examples and schemas of the [new API call in the API console](https://eu.api.ovh.com/console/?section=%2Fdedicated%2Fserver&branch=v1#post-/dedicated/server/-serviceName-/reinstall) and look at its [public documentation](/pages/bare_metal_cloud/dedicated_servers/api-os-installation).
108
+
Although you will receive an email with all the details to migrate your API payloads to the [new API call](https://eu.api.ovh.com/console/?section=%2Fdedicated%2Fserver&branch=v1#post-/dedicated/server/-serviceName-/reinstall), feel free to start exploring the examples and schemas of the [new API call in the API console](https://eu.api.ovh.com/console/?section=%2Fdedicated%2Fserver&branch=v1#post-/dedicated/server/-serviceName-/reinstall) and look at its [public documentation](/pages/bare_metal_cloud/dedicated_servers/api-os-installation).
109
109
110
-
In your usage, end of personal templates service really simplifies the OS installation on dedicated servers, since the new API call [POST /dedicated/server/{serviceName}/reinstall](https://eu.api.ovh.com/console/?section=%2Fdedicated%2Fserver&branch=v1#post-/dedicated/server/-serviceName-/reinstall) brings all the possible customizations that the old API call [POST /dedicated/server/{serviceName}/install/start](https://eu.api.ovh.com/console/?section=%2Fdedicated%2Fserver&branch=v1#post-/dedicated/server/-serviceName-/install/start) was not able to offer without the need to define a personal template under [/me/installationTemplate](https://eu.api.ovh.com/console/?section=%2Fme&branch=v1#get-/me/installationTemplate) earlier.
110
+
In your case, the end of the personal templates feature should simplify OS installation on dedicated servers. Indeed, the new API call [POST /dedicated/server/{serviceName}/reinstall](https://eu.api.ovh.com/console/?section=%2Fdedicated%2Fserver&branch=v1#post-/dedicated/server/-serviceName-/reinstall) brings all the possible customizations that the old API call [POST /dedicated/server/{serviceName}/install/start](https://eu.api.ovh.com/console/?section=%2Fdedicated%2Fserver&branch=v1#post-/dedicated/server/-serviceName-/install/start) was not able to offer without the need to first define a personal template under [/me/installationTemplate](https://eu.api.ovh.com/console/?section=%2Fme&branch=v1#get-/me/installationTemplate).
111
111
112
112
The following comparison gives you an idea of the reduced number of API calls to achieve a complex customization configuration involving hardware RAID and custom partitioning: from 4+n calls (where n is the number of partitions you have defined in your partitioning layout) to 1 single API call.
0 commit comments