Ascend Operator

Perform the following steps on any node to verify the installation status of Ascend Operator:

  1. Run the following command to check the Ascend Operator pod in a Kubernetes cluster. Ensure that the pod's STATUS is Running and READY is 1/1.
    kubectl get pods -n mindx-dl -o wide | grep ascend-operator

    Command output:

    1
    ascend-operator-manager-b59774f7-8l5gn         1/1     Running   0          6m52s   192.168.102.67   ubuntu       <none>           <none>
    
  2. View Ascend Operator logs in a Kubernetes cluster.
    kubectl logs -n mindx-dl {name_of_the_Ascend Operator's pod}

    If the following information is displayed, the component is normal.

    1
    2
    3
    4
    5
    root@ubuntu:~# kubectl logs -n mindx-dl ascend-operator-manager-b59774f7-8l5gn 
    [INFO]     2023/03/20 17:48:34.308373 1       hwlog/api.go:108    ascend-operator.log's logger init success
    [INFO]     2023/03/20 17:48:34.308469 1       ascend-operator/main.go:86    ascend-operator starting and the version is xxx
    [INFO]     2023/03/20 17:48:34.964296 1       ascend-operator/main.go:101    starting manager
    ...