I have installed istio using the following command:
istioctl manifest apply --set profile=default
Now I would like to enable tracing without uninstalling and reinstalling istio. Can I use the following command to do it:
istioctl manifest apply --set profile=default --set values.tracing.enabled=true --set values.tracing.provider=zipkin
It is not very clear from the documentation whether I can run the above command after istio is deployed.
Also is there any command to know all the configuration values in an istio deployment?
Thanks.