A pod is the smallest deployable unit in Kubernetes. It represents a single, running instance of an application. A pod can contain one or more tightly coupled containers.
Pods are a native concept in Kubernetes. For more information, see the official Kubernetes documentation.
Create pods
Log on to the LHC console. In the navigation pane on the left, click Cluster Management > Cluster Details to open the cluster list page.
Click the name of the destination cluster to open the Cluster Details page. Then, click the Workloads tab.
In the left-side menu, select Pods, and then click Create Pods.
In the dialog box that appears, enter the YAML content and click Submit.
The following is a YAML sample:
kind: Pod metadata: name: pod-example labels: k8s-app: pod-example namespace: default spec: containers: - name: nginx image: 'registry-vpc.cn-hangzhou.aliyuncs.com/sofa-samples/nginx:latest'
Result
After the pod is created, the pod named pod-example appears in the list.

Related operations
To view the details of a pod, click the pod name on the Pods list page. This opens the pod details page, which shows the pod's basic information, containers, and events.
On the pod details page, you can also do the following:
View container details: Click the name of the container that you want to view. This opens the container details page, as shown in the following figure.
Go to the Container Service console: On the pod details page, click Go to Console in the Actions column for the container. You can also click Console on the container details page. You are redirected to the Container Service console, where you can enter commands to manage the container.
To search for pods, enter a keyword from a pod name in the search box in the upper-right corner of the Pods list page.
To update a pod, click View/Edit in the Actions column on the Pods list page. In the Edit Pod dialog box, edit the YAML configuration and then click Submit.
To delete a pod, on the Pods list page, click the More icon in the Actions column and select Delete. In the dialog box that appears, click OK.