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.

47 lines
1.5 KiB

  1. Kube-OVN
  2. ===========
  3. Kube-OVN integrates the OVN-based Network Virtualization with Kubernetes. It offers an advanced Container Network Fabric for Enterprises.
  4. For more information please check [Kube-OVN documentation](https://github.com/alauda/kube-ovn)
  5. ## How to use it
  6. Enable kube-ovn in `group_vars/k8s-cluster/k8s-cluster.yml`
  7. ```
  8. ...
  9. kube_network_plugin: kube-ovn
  10. ...
  11. ```
  12. ## Verifying kube-ovn install
  13. Kube-OVN run ovn and controller in `kube-ovn` namespace
  14. * Check the status of kube-ovn pods
  15. ```
  16. # From the CLI
  17. kubectl get pod -n kube-ovn
  18. # Output
  19. NAME READY STATUS RESTARTS AGE
  20. kube-ovn-cni-49lsm 1/1 Running 0 2d20h
  21. kube-ovn-cni-9db8f 1/1 Running 0 2d20h
  22. kube-ovn-cni-wftdk 1/1 Running 0 2d20h
  23. kube-ovn-controller-68d7bb48bd-7tnvg 1/1 Running 0 2d21h
  24. ovn-central-6675dbb7d9-d7z8m 1/1 Running 0 4d16h
  25. ovs-ovn-hqn8p 1/1 Running 0 4d16h
  26. ovs-ovn-hvpl8 1/1 Running 0 4d16h
  27. ovs-ovn-r5frh 1/1 Running 0 4d16h
  28. ```
  29. * Check the default and node subnet
  30. ```
  31. # From the CLI
  32. kubectl get subnet
  33. # Output
  34. NAME PROTOCOL CIDR PRIVATE NAT
  35. join IPv4 100.64.0.0/16 false false
  36. ovn-default IPv4 10.16.0.0/16 false true
  37. ```