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/virtual_private_servers/using-automated-backups-on-a-vps/guide.pt-pt.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -68,7 +68,7 @@ Para uma maior flexibilidade dos seus backups, pode ativar a opção Backup auto
68
68
A opção de Backup automatizado Premium cria um backup do seu VPS a cada 24 horas no horário especificado.
69
69
Você terá acesso a todos os backups diários dos últimos 7 dias. Uma vez criados 7 backups, cada novo backup substituirá o mais antigo.
70
70
71
-
Faça login no seu [Área de Cliente OVHcloudl](/links/manager), abra a seção `Bare Metal Cloud`{.action}, selecione `Servidor privado virtual`{.action} e, em seguida, clique no nome do seu VPS.
71
+
Faça login no seu [Área de Cliente OVHcloud](/links/manager), abra a seção `Bare Metal Cloud`{.action}, selecione `Servidor privado virtual`{.action} e, em seguida, clique no nome do seu VPS.
72
72
73
73
Clique na aba `Backup automatizado`{.action} no menu horizontal.
Copy file name to clipboardExpand all lines: pages/hosted_private_cloud/opcp/how-to-use-api-and-get-credentials/guide.fr-fr.md
+71-67Lines changed: 71 additions & 67 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ updated: 2025-11-07
8
8
9
9
**OPCP** intègre une authentification centralisée avec **Keycloak**. Il est donc nécessaire de configurer la **CLI OpenStack** afin qu’il utilise Keycloak comme fournisseur d’identité (Identity Provider).
10
10
11
-
**Ce guide décrit les étapes nécessaires pour configurer **Keycloak** et la **CLI OpenStack** afin de permettre l’authentification via Keycloak.**
11
+
**Ce guide décrit les étapes nécessaires pour configurer Keycloak et la CLI OpenStack afin de permettre l’authentification via Keycloak.**
12
12
13
13
## Prérequis
14
14
@@ -25,9 +25,11 @@ Un client **Keycloak dédié** est nécessaire pour permettre à la CLI OpenStac
25
25
#### Étapes
26
26
27
27
1.**Connexion à l’interface d’administration Keycloak**
28
-
Connectez-vous à votre instance Keycloak et sélectionnez le *realm* dans lequel les utilisateurs OpenStack sont définis.
28
+
29
+
- Connectez-vous à votre instance Keycloak et sélectionnez le *realm* dans lequel les utilisateurs OpenStack sont définis.
29
30
30
31
2.**Création d’un nouveau client**
32
+
31
33
- Allez dans la section `Clients` et cliquez sur `Créer un client`{.action}.
32
34
- Renseignez un **Client ID**, par exemple :
33
35
@@ -38,10 +40,12 @@ Un client **Keycloak dédié** est nécessaire pour permettre à la CLI OpenStac
38
40
- Cliquez sur `Suivant`{.action}.
39
41
40
42
3. **Activation de l’authentification du client**
43
+
41
44
- Activez le **Client Authentication** (mettre sur **ON**).
42
45
- Cliquez sur `Suivant`{.action}, puis sur `Enregistrer`{.action}.
43
46
44
47
4. **Configuration des portées (Client Scopes)**
48
+
45
49
- Ouvrez l’onglet `Client Scopes`.
46
50
- Sélectionnez la portée nommée :
47
51
@@ -52,6 +56,7 @@ Un client **Keycloak dédié** est nécessaire pour permettre à la CLI OpenStac
52
56
- Cliquez sur `Configurer un nouveau mapper`{.action}.
53
57
54
58
5. **Ajout d’un mapper d’attributs de groupe utilisateur**
59
+
55
60
- Choisissez le type de mapper **aggregated-user-group-attribute-mapper**.
56
61
- Configurez les champs suivants :
57
62
@@ -64,25 +69,27 @@ Un client **Keycloak dédié** est nécessaire pour permettre à la CLI OpenStac
64
69
- Cliquez sur `Enregistrer`{.action}.
65
70
66
71
6. **Récupération des identifiants du client**
72
+
67
73
- Allez dans l’onglet `Credentials` du client que vous venez de créer.
68
74
- Copiez et conservez de manière sécurisée la **Client Secret** — il sera nécessaire lors de la configuration du CLI OpenStack.
69
75
70
-
---
71
76
72
77
### Configuration de la CLI OpenStack
73
78
74
79
Une fois le client Keycloak créé, la CLI OpenStack doit être configurée pour utiliser ce client comme fournisseur d'identité OIDC (OpenID Connect).
75
80
76
81
#### Étapes
77
82
78
-
1. **Installer les outils CLI OpenStack**
83
+
1. **Installer les outils CLI OpenStack**
84
+
79
85
Si ce n’est pas déjà fait :
80
86
81
87
```bash
82
88
sudo pip install python-openstackclient
83
89
```
84
90
85
-
2.**Définir les variables d’environnement pour l’authentification Keycloak**
91
+
2.**Définir les variables d’environnement pour l’authentification Keycloak**
92
+
86
93
Exemple :
87
94
88
95
```bash
@@ -100,68 +107,69 @@ Une fois le client Keycloak créé, la CLI OpenStack doit être configurée pour
100
107
export OS_PROJECT_ID="project-id"
101
108
```
102
109
103
-
> **Tips 1**
104
-
> : Vous pouvez utiliser le script suivant afin de générer le fichier de configuration openrc.sh facilement :
105
-
106
-
```bash
107
-
#!/usr/bin/env bash
108
-
109
-
read -p "Your environment's base FQDN (e.g. example.bmp.ovhgoldorack.ovh): " FQDN_ENV
110
-
111
-
read -p 'master or pod realm ? (master/pod): ' REALM
112
-
if [ "$REALM"!="master" ] && [ "$REALM"!="pod" ];then
113
-
echo"Invalid input. Please enter either 'master' or 'pod'."
114
-
exit 1
115
-
fi
110
+
> **Tips 1**
111
+
> : Vous pouvez utiliser le script suivant afin de générer le fichier de configuration openrc.sh facilement :
Copy file name to clipboardExpand all lines: pages/web_cloud/web_hosting/diagnostic_slownesses/guide.en-asia.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -94,7 +94,7 @@ All diagnostics in step 1 must be performed **without exception** to determine w
94
94
95
95
To ensure that your services (shared hosting **and** database) are not undergoing maintenance or an incident, retrieve the cluster and filer information of your web hosting as well as the general information relating to your database. You can then check their status at [status.ovhcloud.com](https://web-cloud.status-ovhcloud.com/).
96
96
97
-
o find out the cluster and filer of your hosting, log in to your [OVHcloud Control Panel](/links/manager), go to the `Web Cloud`{.action} section, click on `Hosting plans`{.action} then select the web hosting plan concerned. In the `General information`{.action} tab you can see the `Datacenter` and `Filer` of your web hosting.
97
+
To find out the cluster and filer of your hosting, log in to your [OVHcloud Control Panel](/links/manager), go to the `Web Cloud`{.action} section, click on `Hosting plans`{.action} then select the web hosting plan concerned. In the `General information`{.action} tab you can see the `Datacenter` and `Filer` of your web hosting.
Copy file name to clipboardExpand all lines: pages/web_cloud/web_hosting/diagnostic_slownesses/guide.en-au.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -94,7 +94,7 @@ All diagnostics in step 1 must be performed **without exception** to determine w
94
94
95
95
To ensure that your services (shared hosting **and** database) are not undergoing maintenance or an incident, retrieve the cluster and filer information of your web hosting as well as the general information relating to your database. You can then check their status at [status.ovhcloud.com](https://web-cloud.status-ovhcloud.com/).
96
96
97
-
o find out the cluster and filer of your hosting, log in to your [OVHcloud Control Panel](/links/manager), go to the `Web Cloud`{.action} section, click on `Hosting plans`{.action} then select the web hosting plan concerned. In the `General information`{.action} tab you can see the `Datacenter` and `Filer` of your web hosting.
97
+
To find out the cluster and filer of your hosting, log in to your [OVHcloud Control Panel](/links/manager), go to the `Web Cloud`{.action} section, click on `Hosting plans`{.action} then select the web hosting plan concerned. In the `General information`{.action} tab you can see the `Datacenter` and `Filer` of your web hosting.
0 commit comments