A building-permits app needs public endpoint URLs and database credentials in the same Pod. How should those settings typically be split?
Select an answer to reveal the explanation.
Short Explanation
Split the toolbox: yellow sticky notes for URLs (ConfigMap), locked box for passwords (Secret). Most apps mount or env-load both together.
Full Explanation
Applications commonly consume a ConfigMap for non-sensitive settings such as URLs and a Secret for credentials in the same Pod. Combining secrets into public ConfigMaps or images is poor practice, and PVCs claim storage rather than replacing ConfigMap/Secret configuration objects.