> For the complete documentation index, see [llms.txt](https://docs.cloudeka.ai/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.cloudeka.ai/reference/deployment-llama-3.1-70b-with-vllm-on-kubernetes/verify-deployment.md).

# Verify Deployment

## Check Status: Deployment

Check the status of the deployment to ensure it is running correctly.

```bash
kubectl get deployment -n vllm
```

<figure><img src="https://2882153758-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fi9YWb69HFXLHYlXffReU%2Fuploads%2FH69GJBaVxM5cT5Vhj5es%2Fimage.png?alt=media&amp;token=6bc8f258-1e5a-4086-b823-df425d0a2290" alt=""><figcaption><p>Check Status Image</p></figcaption></figure>

{% hint style="success" %}
In the image "Check Status Deployment", you can see that the deployment status in the Ready column has a value of 0/1, which means it is not ready, wait 3-5 minutes and run the above syntax again.
{% endhint %}

{% hint style="danger" %}
Check the logs of the pod for any errors.

```bash
kubectl logs -n vllm
```

{% endhint %}

## Check Status: Pods

Check the status of the pods to ensure it is running correctly.

```bash
kubectl get pods -n vllm
```

<figure><img src="https://2882153758-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fi9YWb69HFXLHYlXffReU%2Fuploads%2FYEIHUdVGLOj0fzGzXcEQ%2Fimage.png?alt=media&amp;token=d3c42a0d-17c4-481d-bd87-4d8a75f0364f" alt=""><figcaption><p>Check Status Pods</p></figcaption></figure>

## Check Status: Service

Check the status of the service to get the external IP.

```bash
kubectl get service -n vllm
```

<figure><img src="https://2882153758-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fi9YWb69HFXLHYlXffReU%2Fuploads%2FmOwu0XPWo7mJow3mI3Zy%2Fimage.png?alt=media&amp;token=55d845d8-49de-40da-b451-d689be6c7be8" alt=""><figcaption><p>Check Status Service</p></figcaption></figure>
