Injecting Configurations from Multiple Files
Learn how to inject configurations from multiple files and directories.
Creating a ConfigMap from multiple files
Let's see what happens when we execute the following commands:
We create a ConfigMap with two files and the same Pod based on the alpine.yml definition. Finally, we output the list of files from the /etc/config directory inside the Pod’s only container. The output of the latter command is as follows:
We can ...