Container Service for Kubernetes (ACK) provides the Overview tab that helps you track the cluster health status. The Overview tab displays cluster information such as the application status, component status, and resource monitoring charts. You can also view the following cluster information: basic information, connection information, cluster resources, cluster logs, and cluster time zone.
View cluster overview
On the Overview tab, you can view the application status, node status, component status, and resource monitoring charts.
View basic information
On the Basic Information tab, you can view the cluster ID, region, API server endpoint, and network information.
- Log on to the Container Service for Kubernetes (ACK) console.
- In the left-side navigation pane, click Clusters or Serverless Clusters based on the cluster type. On the page that appears, click the name of the cluster that you want to view.
- Click the Basic Information tab.
View connection information
On the Connection Information tab, you can obtain a kubeconfig file that you can use to connect to the cluster over the Internet or an internal network. After you configure the kubeconfig file, you can use kubectl to connect to the cluster.
View cluster resources
View cluster logs
On the Cluster Logs tab, you can view the cluster logs.
View the time zone of a cluster
You can view the system time zone and the time zone of worker nodes.
- Use kubectl to connect to the cluster and run the following command to view the system
time zone:
kubectl get configmap -n kube-system ack-cluster-profile -o yaml | grep timezone
Sample command output:timezone: Asia/Shanghai
- Use SSH to log on to a worker node and run the following command to view the time
zone of the worker node:
ls -l /etc/localtime
Sample command output:lrwxrwxrwx 1 root root 30 Sep 30 18:44 /etc/localtime -> /usr/share/zoneinfo/Asia/Shanghai