This commit is contained in:
zeaslity
2024-10-30 16:30:51 +08:00
commit 437acbeb63
3363 changed files with 653948 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
#!/bin/bash
namespace="uavcloud-demo"
configmaps=$(kubectl get configmaps -n $namespace | grep tenant | awk '{print $1}')
for configmap in $configmaps
do
echo "ConfigMap: $configmap"
kubectl get configmap $configmap -n $namespace -o yaml
echo "---------------------"
done