Disabling network logs on Kubernetes when running kubectl exec
if you are in cmd run:
set DEBUG=
if you are in powershell :
$env:DEBUG=""
if you are a bash-like shell:
export DEBUG=
or unset DEBUG
Just found it:
unset DEBUG
fixed it !
if you are in cmd run:
set DEBUG=
if you are in powershell :
$env:DEBUG=""
if you are a bash-like shell:
export DEBUG=
or unset DEBUG
Just found it:
unset DEBUG
fixed it !