1. 현재 실행 중인 Pod YAML 정보 보기kubectl get pod -n -o yaml(예시)kebectl get pod my-pod -n default -o yaml 2. 어떤 ConfigMap이 마운트되었는지 확인 방법- 출력 결과에서 Volumes 섹션이나 Mounts 섹션을 보면 어떤 ConfigMap이 마운트되었는지 확인 할 수 있음- Pod 성격에 따라서 ConfigMap yaml 이 없을 수도 있음.kubectl describe pod -n (예시)kebectl describe pod my-pod -n default 3. ConfigMap 정보 확인kubectl get configmap -n -o yaml (예시)kebectl get configmap my-con..