Container Service for Kubernetes (ACK) provides an overview page for each cluster in the ACK console. You can view the statuses of applications and components, and check the monitoring information about the computing resources. This allows you to understand the health status of the cluster. On the overview page, you can also view the basic information, connection information, computing resources, logs, and time zone of the cluster.
Check the cluster overview
On the overview page of an ACK cluster, you can view the statuses of applications, nodes, and components in the cluster. You can also view the monitoring information about the computing resources.
View basic information
On the Basic Information tab, you can view the cluster ID, region, API server endpoint, and network information.
View connection information
On the Connection Information tab, you can obtain the kubeconfig file that is used to connect to the cluster over the Internet or the internal network. You can also use kubectl to connect to the cluster based on the content in the kubeconfig file.
View cluster resources
View cluster logs
- Method 1: View cluster logs through the Cluster Information menu.
In the left-side navigation pane of the cluster details page, click Cluster Information. Click the Cluster Logs tab to view the cluster logs.
- Method 2: View cluster logs through the Operations menu.
In the left-side navigation pane of the cluster details page, choose Cluster Logs tab to view the cluster logs.
. On the Log Center page, click the
View the time zone of a cluster
You can view the time zone of a cluster and the time zone of a worker node.
- To view the time zone of a cluster, connect to the cluster by using kubectl and run
the following command:
kubectl get configmap -n kube-system ack-cluster-profile -o yaml | grep timezone
Sample output:timezone: Asia/Shanghai
- To view the time zone of a worker node, connect to the worker node by using SSH and
run the following command:
ls -l /etc/localtime
Sample output:lrwxrwxrwx 1 root root 30 Sep 30 18:44 /etc/localtime -> /usr/share/zoneinfo/Asia/Shanghai