typo l'utilisation de target-stage

This commit is contained in:
Matthieu Lamalle 2025-02-20 13:26:33 +01:00
parent 670b2b5b91
commit 0323a3b521
2 changed files with 6 additions and 6 deletions

@ -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 <source_tag> [<source_tag> ...] [--dry-run] [--target-stage <stage>] [--no-confirmation]`
`promote.sh <source_tag> [<source_tag> ...] [--dry-run] [--target-stage=<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 <stage>` : Spécifie un stage cible particulier pour la promotion.
- `--target-stage=<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`

@ -2,7 +2,7 @@
# Vérification du nombre d'arguments
if [ "$#" -lt 1 ]; then
echo "Usage: promote.sh <source_tag> [<source_tag> ...] [--dry-run] [--target-stage <stage>] [--no-confirmation]"
echo "Usage: promote.sh <source_tag> [<source_tag> ...] [--dry-run] [--target-stage=<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 <stage> : Spécifie un stage cible particulier pour la promotion."
echo " --target-stage=<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