Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

https://github.com/epics-base/epics-base/issues/488.


Check metallb configuration

For further EPIK8s installation is important to take note of loadbalancer IP configured in the install process.


  • Check the MetalLB Configuration: To see the current configuration of MetalLB, you can list the IPAddressPool and L2Advertisement CRDs:

    microk8s kubectl get ipaddresspool -n metallb-system microk8s kubectl get l2advertisement -n metallb-system 

  • View the Details of an IPAddressPool: If you have an existing IPAddressPool, you can view its configuration with:

    microk8s kubectl get ipaddresspool <pool-name> -n metallb-system -o yaml 

    Replace <pool-name> with the actual name of the IP address pool you want to inspect. The output will show the range of IP addresses that MetalLB can use.


Some of this IP should be used to access internal EPIK8s service like cagateway and pvagateway.



Expose K8s Dashboard 

You can expose the Dashboard using a NodePort, Ingress, or LoadBalancer service, depending on your setup. By default, it uses a ClusterIP, which is not accessible externally.

...