Ajout du script bash pour créer la configmap dans OpenShift (opération inverse)
This commit is contained in:
parent
28170cf166
commit
bed8068791
1 changed files with 9 additions and 0 deletions
9
file2configmap.sh
Normal file
9
file2configmap.sh
Normal file
|
@ -0,0 +1,9 @@
|
|||
#!/bin/bash
|
||||
# Ce programme permet de générer une configmap dans OpenShift
|
||||
# depuis un répertoire de fichier et de télécharger le YAML qui a été produit
|
||||
|
||||
mkdir -p "$2"
|
||||
|
||||
oc create configmap "$1" --from-file="$2"
|
||||
|
||||
oc get configmaps "$1" -o yaml > "$1.yaml"
|
Loading…
Reference in a new issue