We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 927e686 commit 4071afeCopy full SHA for 4071afe
1 file changed
internal/k8sutil/k8sutil.go
@@ -212,7 +212,10 @@ func GetUpdateCaCertInitContainerCommand() []string {
212
"/bin/sh",
213
"-c",
214
"echo 'Copying CA certs from Config Map'; " +
215
+ "ls -l /custom; " +
216
"cp /custom/*.crt /usr/local/share/ca-certificates/; " +
217
+ "for f in /custom/*.pem; do cp \"$f\" \"/usr/local/share/ca-certificates/$(basename \"${f%.pem}\")-pem.crt\"; done;" +
218
+ "ls -l /usr/local/share/ca-certificates/;" +
219
"echo 'Updating CA certs'; " +
220
"update-ca-certificates; " +
221
"echo 'CA certs updated'; " +
0 commit comments