You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
1.5 KiB

  1. # Network Checker Application
  2. With the ``deploy_netchecker`` var enabled (defaults to false), Kubespray deploys a
  3. Network Checker Application from the 3rd side `l23network/k8s-netchecker` docker
  4. images. It consists of the server and agents trying to reach the server by usual
  5. for Kubernetes applications network connectivity meanings. Therefore, this
  6. automatically verifies a pod to pod connectivity via the cluster IP and checks
  7. if DNS resolve is functioning as well.
  8. The checks are run by agents on a periodic basis and cover standard and host network
  9. pods as well. The history of performed checks may be found in the agents' application
  10. logs.
  11. To get the most recent and cluster-wide network connectivity report, run from
  12. any of the cluster nodes:
  13. ```ShellSession
  14. curl http://localhost:31081/api/v1/connectivity_check
  15. ```
  16. Note that Kubespray does not invoke the check but only deploys the application, if
  17. requested.
  18. There are related application specific variables:
  19. ```yml
  20. netchecker_port: 31081
  21. agent_report_interval: 15
  22. netcheck_namespace: default
  23. ```
  24. Note that the application verifies DNS resolve for FQDNs comprising only the
  25. combination of the ``netcheck_namespace.dns_domain`` vars, for example the
  26. ``netchecker-service.default.svc.cluster.local``. If you want to deploy the application
  27. to the non default namespace, make sure as well to adjust the ``searchdomains`` var
  28. so the resulting search domain records to contain that namespace, like:
  29. ```yml
  30. search: foospace.cluster.local default.cluster.local ...
  31. nameserver: ...
  32. ```