Container logs for helm install
-
Is it possible to print to
helm install
(orhelm upgrade
) output the logs of the deploying containers (logs that are available bykubectl logs
command)?
-
Short answer: no. You would most likely run helm commands from your own workstation.
For those logs to be available through "kubectl logs", you would have to start a Pod, executing your "helm install" command. Maybe using a Job. Although this also means having some ServiceAccount with enough privileges to install objects on behalf of Helm.