From 0323a3b521c08c485b22c492d047b89c30242963 Mon Sep 17 00:00:00 2001 From: mlamalle Date: Thu, 20 Feb 2025 13:26:33 +0100 Subject: [PATCH] typo l'utilisation de target-stage --- README.md | 6 +++--- promote.sh | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 179d5af..d6deb1d 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ Ce script permet de promouvoir des tags d'images Docker du projet MSE d'une éta Il prend un ou plusieurs tags d'images Docker comme argument et les promeut en fonction de leur étape actuelle. ### Usage -`promote.sh [ ...] [--dry-run] [--target-stage ] [--no-confirmation]` +`promote.sh [ ...] [--dry-run] [--target-stage=] [--no-confirmation]` Par défaut, la promotion suit la séquence d'étapes : `'k8sunstable' -> 'k8stesting' -> 'k8spreprod' -> 'k8sprod'` ### Arguments : @@ -20,7 +20,7 @@ Exemple : reg.cadoles.com/cnous-mse/portal:2025.2.6-XXX.1402.ed7732337 - `--dry-run` : Mode 'dry-run'. Simule la promotion sans exécuter de commandes Docker. Utile pour vérifier ce qui se passerait sans faire de changements. - - `--target-stage ` : Spécifie un stage cible particulier pour la promotion. + - `--target-stage=` : Spécifie un stage cible particulier pour la promotion. Par défaut, la promotion suit la séquence d'étapes : `'k8sunstable' -> 'k8stesting' -> 'k8spreprod' -> 'k8sprod'`. Vous pouvez spécifier directement le stage (ex: --target-stage k8spreprod). - `--no-confirmation` : Ignore la demande de confirmation avant de pousser le tag Docker. @@ -32,6 +32,6 @@ Par défaut, la promotion suit la séquence d'étapes : `'k8sunstable' -> 'k8ste ` promote.sh reg.cadoles.com/cnous-mse/portal:2025.2.6-XXX.1402.ed7732337 --dry-run` - ` promote.sh reg.cadoles.com/cnous-mse/portal:2025.2.6-XXX.1402.ed7732337 --target-stage k8spreprod` + ` promote.sh reg.cadoles.com/cnous-mse/portal:2025.2.6-XXX.1402.ed7732337 --target-stage=k8spreprod` ` promote.sh reg.cadoles.com/cnous-mse/portal:2025.2.6-XXX.1402.ed7732337 --no-confirmation` diff --git a/promote.sh b/promote.sh index 5c27dbd..2246e7a 100755 --- a/promote.sh +++ b/promote.sh @@ -2,7 +2,7 @@ # Vérification du nombre d'arguments if [ "$#" -lt 1 ]; then - echo "Usage: promote.sh [ ...] [--dry-run] [--target-stage ] [--no-confirmation]" + echo "Usage: promote.sh [ ...] [--dry-run] [--target-stage=] [--no-confirmation]" echo echo "Description:" echo "Ce script permet de promouvoir des tags d'images Docker du projet MSE d'une étape à une autre (ex: 'k8sunstable' vers 'k8stesting')." @@ -16,7 +16,7 @@ if [ "$#" -lt 1 ]; then echo "Options :" echo " --dry-run : Mode 'dry-run'. Simule la promotion sans exécuter de commandes Docker." echo " Utile pour vérifier ce qui se passerait sans faire de changements." - echo " --target-stage : Spécifie un stage cible particulier pour la promotion." + echo " --target-stage= : Spécifie un stage cible particulier pour la promotion." echo " Par défaut, la promotion suit la séquence d'étapes (ex: 'k8sunstable' -> 'k8stesting' -> ...)" echo " Vous pouvez spécifier directement le stage (ex: --target-stage k8spreprod)." echo " --no-confirmation : Ignore la demande de confirmation avant de pousser le tag Docker." @@ -25,7 +25,7 @@ if [ "$#" -lt 1 ]; then echo "Exemples d'utilisation :" echo " promote.sh reg.cadoles.com/cnous-mse/portal:2025.2.6-XXX.1402.ed7732337" echo " promote.sh reg.cadoles.com/cnous-mse/portal:2025.2.6-XXX.1402.ed7732337 --dry-run" - echo " promote.sh reg.cadoles.com/cnous-mse/portal:2025.2.6-XXX.1402.ed7732337 --target-stage k8spreprod" + echo " promote.sh reg.cadoles.com/cnous-mse/portal:2025.2.6-XXX.1402.ed7732337 --target-stage=k8spreprod" echo " promote.sh reg.cadoles.com/cnous-mse/portal:2025.2.6-XXX.1402.ed7732337 --no-confirmation" exit 1 fi