A helper must pull configuration from Git into a shared emptyDir before the main app reads those files. Which statement best describes the pattern?
Select an answer to reveal the explanation.
Short Explanation
It’s like a stagehand setting props on a shared table before the actor walks out—or refreshing them during the show. The helper fills emptyDir; the app just reads the files.
Full Explanation
Content-sync helpers populate shared volumes for the main process. An init container can fetch once before start; a sync sidecar can refresh continuously. emptyDir is a common shared target. PVC is not required for ephemeral staged config, and Ingress or cluster-admin CRDs are not the default mechanism for this pattern.