Kubernetes DNS Operations: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 5: Line 5:
=Troubleshooting DNS Resolution=
=Troubleshooting DNS Resolution=
{{External|https://kubernetes.io/docs/tasks/administer-cluster/dns-debugging-resolution}}
{{External|https://kubernetes.io/docs/tasks/administer-cluster/dns-debugging-resolution}}
To run a pod that comes with DNS troubleshooting tools:
<syntaxhighlight lang='text'>
kubectl run -it --rm --restart=Never --image=infoblox/dnstools:latest dnstools
</syntaxhighlight>

Revision as of 06:09, 20 September 2020

Internal

Troubleshooting DNS Resolution

https://kubernetes.io/docs/tasks/administer-cluster/dns-debugging-resolution

To run a pod that comes with DNS troubleshooting tools:

kubectl run -it --rm --restart=Never --image=infoblox/dnstools:latest dnstools