Difference between revisions of "CoreDNS"

From wikieduonline
Jump to navigation Jump to search
Line 37: Line 37:
 
* [[EKS]]: <code>[[kubectl get service]] [[kube-dns]] -n kube-system</code>
 
* [[EKS]]: <code>[[kubectl get service]] [[kube-dns]] -n kube-system</code>
 
* <code>[[kubectl cluster-info]]</code>
 
* <code>[[kubectl cluster-info]]</code>
* [[CKA 1.23]]: [[Know how to configure and use CoreDNS]]
 
 
* <code>[[dnsPolicy:]]</code>
 
* <code>[[dnsPolicy:]]</code>
 
* [[EKS add-ons]]: <code>[[kube-dns]], [[kube-proxy]]</code>
 
* [[EKS add-ons]]: <code>[[kube-dns]], [[kube-proxy]]</code>

Revision as of 07:51, 26 February 2024

wikipedia:CoreDNS [1] (2019) DNS and Service discovery

kubectl -n kube-system -l=k8s-app=kube-dns get pods
NAME                      READY   STATUS    RESTARTS   AGE
coredns-f47955f89-7ntw4   0/1     Pending   0          3h37m
coredns-f47955f89-sl79r   0/1     Pending   0          3h37m

EKS

Terraform:

 cluster_addons = {
   coredns = {
     preserve    = true
     most_recent = true

     timeouts = {
       create = "25m"
       delete = "10m"
     }
   }
   kube-proxy = {
     most_recent = true
   }
   vpc-cni = {
     most_recent = true
   }
   aws-ebs-csi-driver = {
     most_recent = true
   }
 }

Related: Terraform EKS module official usage example

Protocols

  • dns:// for plain DNS (the default if no scheme is specified).
  • tls:// for DNS over TLS, see RFC 7858.
  • https:// for DNS over HTTPS, see RFC 8484.
  • grpc:// for DNS over gRPC

Errors

Versions


Related terms

Activities

See also

  • https://coredns.io/
  • Advertising: