Networking
- Replacing method calls and module separations with network invocations and service partitioning within a single, coherent team and application is madness in almost all cases.
from Even Amazon Can't Make Sense of Serverless or Microservices by David Heinemeier Hansson
Bernardo Salazar added 15d ago
- It’s possible to tell Kubernetes to use the DNS configuration of the host. This is used, for instance, in the CoreDNS pods, since they need to know which resolvers to query for external names. It’s also used by some infrastructure, essential pods, that need to resolve external names but don’t want to depend on the Kubernetes internal DNS to be avai... See more
from Understanding DNS resolution on Linux and Kubernetes
Bernardo Salazar added 23d ago
- Finally, there is that options ndots:5 . This indicates “how many dots should there be in a name for that name to be considered an external name”. In other words, if we try to resolve a , a.b , a.b.c , a.b.c.d , or a.b.c.d.e , the search list will be used - so resolving api.example.com will result in 5 DNS queries (for the 4 elements of the search ... See more
from Understanding DNS resolution on Linux and Kubernetes
Bernardo Salazar added 23d ago
regarding configuration options in an /etc/resolv.conf file
Ideas related to this collection