diff --git a/configmap-migration.sh b/configmap-migration.sh
new file mode 100755
index 0000000000000000000000000000000000000000..dee9a0b0e294b11d984052f20ad09cc455c48f36
--- /dev/null
+++ b/configmap-migration.sh
@@ -0,0 +1,9 @@
+#!/bin/bash
+
+for file in $1/*; do
+  clipboard+="  $(basename $file): |\n"
+  clipboard+=$(cat $file | awk '{print "    "$0}')
+  clipboard+="\n"
+done
+
+echo -e "$clipboard"
\ No newline at end of file