> For the complete documentation index, see [llms.txt](https://docs.groundcover.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.groundcover.com/architecture/byoc/deploying-in-sensor-only-mode.md).

# Deploying in Sensor-Only mode

{% hint style="info" %}
The following guide will walk you through the steps of deploying in Sensor-Only mode, as the final step to setup BYOC. If you're not in the process setting up BYOC, you should follow [this guide](/getting-started/installation-and-updating/connect-kubernetes-cluster.md) to deploy groundcover.
{% endhint %}

## Kubernetes

Deploying groundcover sensors in a Kubernetes cluster is done by deploying the groundcover Helm chart with specific overrides. There are multiple ways to deploy the Helm chart which are [listed below](#deploying-the-sensors).

{% hint style="info" %}
After setting up BYOC you will receive configuration values from the groundcover team that are needed for the next steps.

If you haven't received those values please contact the groundcover team before proceeding.
{% endhint %}

### Creating an overrides file

In order to deploy in sensor-only mode, you will need to provide installation values similar to these:

```yaml
global:
  backend:
    enabled: false
  ingress:
    site: {BYOC_ENDPOINT}
```

`{BYOC_ENDPOINT}` is your unique groundcover ingestion endpoint, you can locate it in the [ingestion keys tab](https://app.groundcover.com/settings?selectedTab=ingestion-keys).

#### Example

In this example the `{BYOC_ENDPOINT}` will be `example.platform.grcv.io`.

The following values will be needed in the deployment:

```yaml
global:
  backend:
    enabled: false
  ingress:
    site: example.platform.grcv.io
```

### Deploying the sensors

Choose any of the installation methods below to deploy the groundcover helm chart.

{% hint style="warning" %}
Don't forget to add the overrides the from previous step to the deployment values!
{% endhint %}

1. [Using the groundcover CLI](/getting-started/installation-and-updating/connect-kubernetes-cluster.md#installing-using-cli)
2. [Using Helm](/getting-started/installation-and-updating/connect-kubernetes-cluster.md#installing-using-helm)
3. [Using ArgoCD](/customization/customize-deployment/argo-cd.md)


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.groundcover.com/architecture/byoc/deploying-in-sensor-only-mode.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
