Skip to content

MKE 4k dashboard service#

The MKE 4k Dashboard is a default service that is always installed and enabled. On child clusters it works in read-only mode since all configuration management is handled from the mothership cluster.

You can use either of two kubectl commands to obtain the address of the MKE dashboard:

  • Once the MkeChildConfig object is ready, obtain the child cluster external address from the MkeChildConfig status:

    kubectl -n k0rdent get mkechildconfig my-child-cluster -o yaml
    

    Example output:

    ...
    status:
      externalAddress: https://external-address.com:30001
    
  • Use the -o wide argument:

    kubectl -n k0rdent get mkechildconfig my-child-cluster -o wide
    
    Example output:

    NAME             READY   VERSION   LICENSE      STATUS           AGE   EXTERNAL ADDRESS
    my-child-cluster True    v4.1.2    inlicensed   Object is ready  8m    https://external-address.com:30001
    

Refer to MKE 4k Dashboard for more details.