kubernetes-helmistio

istio v1.11.4 - install via helm chart; how to enable envoy proxy logging?


This is probably a very basic question. I am looking at Install Istio with Helm and Enable Envoy’s access logging.

How do I enable envoy access logging if I install istio via its helm charts?


Solution

  • Envoy access log configuration is possible through the istiod Helm chart through using meshConfig.

    meshConfig:
      accessLogFile: /dev/stdout
    

    More options for the MeshConfig are here.