diff --git a/README.md b/README.md
index b67fe21a7e088095e8836221091b4bd8c294d397..4f779889d7519822603be190603a002064e29d13 100644
--- a/README.md
+++ b/README.md
@@ -23,7 +23,7 @@ Ce dépot contient un ensemble de scripts Ansible afin de permettre à une organ
 
 - Renseigner les différentes informations demandées par le script.
 
-- Reporter les informations affichées en fin d'exécution du script dans les champs du formulaire de la page _manager_ de Deadlock, dans la rubrique "On Premise".
+- Reporter les informations affichées en fin d'exécution du script dans les champs du formulaire de la page _manager_ de Deadlock, dans la rubrique "On Premise"/"Auto-hébergé".
 
 ---
 
@@ -37,14 +37,14 @@ This repository contains many Ansible scripts made to offer the possibility for
 
   - 2 CPUs
   - 2 Go RAM minimum
-  - CentOS 8
-  - a `centos` user accessible via SSH
+  - Debian or CentOS 8
+  - a `root` user accessible via SSH
 
 - A server for Kubernetes child node :
   - 1 CPU
   - 2 Go RAM minimum
-  - CentOS 8
-  - a `centos` user accessible via SSH
+  - Debian or CentOS 8
+  - a `root` user accessible via SSH
 
 ## Étapes à suivre
 
@@ -52,4 +52,4 @@ This repository contains many Ansible scripts made to offer the possibility for
 
 - Fill in the informations required by the script.
 
-- Copy the informations diisplayed at the end of the sript execution in the form on the _manager_ page of Deadlock.
+- Copy the informations diisplayed at the end of the script execution in the form on the _manager_ page of Deadlock.
diff --git a/deploy_cluster.sh b/deploy_cluster.sh
index 6a6dffb51a528918811b0cc3548ffe0ad0736dbd..94e4140d91a20abc4aa4a93b70bd1b49f7e62ee8 100755
--- a/deploy_cluster.sh
+++ b/deploy_cluster.sh
@@ -5,7 +5,7 @@ DEFAULT_PRIVATE_KEY_PATH="/home/$USER/.ssh/id_rsa"
 DEFAULT_SSH_PORT="22"
 
 echo "--- Bonjour!"
-echo "Ce script a pour but final déployer un cluster Kubernetes pour utiliser Deadlock sur votre infrastructure."
+echo "Ce script a pour but final déployer un cluster Kubernetes pour héberger les missions Deadlock sur votre infrastructure."
 echo "Avant tout il vous faut renseigner quelques informations sur les machines qui vont nous servir d'hôtes..."
 echo "Pour rappel, il nous faut une machine master et une machine esclave : pod"
 
@@ -81,16 +81,19 @@ echo ""
 echo "Cluster URL"
 echo ""
 echo "https://$ipHostMaster:6443"
+echo ""
 read -p 'Entrée pour afficher la suite'
 
 echo "CA Certificate Data"
 echo ""
 ssh $userMaster@$ipHostMaster -p $sshPortMaster 'cat /etc/kubernetes/pki/ca.crt'
+echo ""
 read -p 'Entrée pour afficher la suite'
 
 echo "Client certificate Data"
 echo ""
 ssh $userMaster@$ipHostMaster -p $sshPortMaster 'cat /etc/kubernetes/pki/deadlock.crt'
+echo ""
 read -p 'Entrée pour afficher la suite'
 
 echo "Client Key Data"