I'm using istio-proxy sidecar with Kubernetes, sidecars are automatically added to the Kubernetes pods. I want to turn off the access log for one single deployment (without disabling the sidecar). is there an annotation to do that?
How to disable istio-proxy sidecar access log for specific deployments in Kubernetes
3.3k Views Asked by Maoz Zadok At
1
There are 1 best solutions below
Related Questions in KUBERNETES
- How to know a Pod's own IP address from inside a container in the Pod?
- Who will decide the "specified number of pods" for replication controller in kubernetes?
- Access other containers of a pod in Kubernetes
- Kubernetes cluster using Vagrant not working after restart
- kubectl not installed with gcloud SDK
- How do I access the Kubernetes api from within a pod container?
- Exposing several services with Vagrant and Kubernetes on my own server
- Does Kubernetes provision new VMs for pods on my cloud platform?
- Any suggestion for running Aerospike on Kubernetes on CoreOS on GCE?
- Kubernetes - kubectl exec bash - session drop and line width
- Google Container Engine (GKE): "Hello Wordpress" tutorial not working (ERR_CONNECTION_REFUSED)
- Kubernetes Pod Creation Speed
- How can i set max count of pods for replication-controller per node?
- Is there a way to tell kubernetes to update your containers?
- Postgres with Kubernetes and persistentDisk
Related Questions in ISTIO
- Communicating with Redis server from a container behind Envoy
- Istio bookinfo sample deployment The connection has timed out
- Using Istio to block incoming connections from ANY to a service
- TLS handshake through Istio ingress gateway fails (tlsMode=passthrough)
- SSL with GRPC on AWS EKS and Istio Ingress gives StatusCode.UNAVAILABLE
- OPA Envoy Plugin for Istio
- How to set correct port for "kubectl port-forward" (strangely goes to localhost:8080)
- Trying to run echo server in Minikube with Istio getting connection refused from client socker
- Istio 1.4.3 to 1.5.6 upgrade using istioctl and Istio operator
- How to enable automatic mTLS using istio mesh in AWS EKS?
- Azure kubernetes - Istio controller with Internal load balancer
- How to connect a local service being developed to a hosted service mesh?
- Egress Blocking Based on IP Address
- Connect to external Kafka brokers via istio egress gateway
- coredns forward plugin to use a k8s service name
Related Questions in ISTIO-SIDECAR
- How to add multiple request matcher and rewrite under virtualservice (istio)?
- Azure Kubernetes - Istio Egress not working
- Istio-injected pod can't communicate with headless service in kubernetes
- How can I block a k8s service (pod) from accessing an external azure redis?
- How to use regex to reduce cardinality of istio metrics which caused istio side car crash
- Can I disable mTLS on Istio so my sidecar will start without certs?
- Can istio authservice be used by ASP.NET server side
- Is there a way to delay when receiving a response from istio?
- Using Apache Ranger as an external authorizer with Istio mesh
- How to route the traffic from a pod to its Node IP address from istio sidecar
- 503 error on HTTP to HTTPS redirect with nginx-ingress when enabling Istio sidecar injection
- Istio gRPC gateway accepts the call and responces but i can't get the responce
- How to add the below nginx ingress parameters/annotations in istio ingress gateway
- Not able to access admin console of keycloak
- How to disable istio-proxy sidecar access log for specific deployments in Kubernetes
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
As I mentioned in comments
If you want to disable envoy’s access logging globally you can use istioctl/operator to do that.
There is istio documentation about that.
There is istioctl command:
There is an example with istio operator:
If you want to disable it for a specific pod you can use use below command, there is envoy documentation about that.
As you're looking for a way to do that for deployment that trick with init container and above curl command might actually work.