> For the complete documentation index, see [llms.txt](https://cortex-docs.paloaltonetworks.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://cortex-docs.paloaltonetworks.com/kubernetes-security/onboard-the-kubernetes-connector/deploy-the-kubernetes-connector-via-gitops/deploy-with-flux-cd.md).

# Deploy with Flux CD

Deploy the Cortex KSPM agent to on-premises Kubernetes clusters using Flux CD. Flux CD is a declarative GitOps continuous delivery tool that automates agent deployment and configuration synchronization from a Git repository.

1. Install the following Flux controllers:

   * Source Controller
   * Kustomize Controller
   * Helm Controller
   * Notification Controller

   ```bash
   flux install
   ```
2. Verify that all controllers are running.

   ```bash
   flux check
   ```

   ```
   #Expected output:
   ✔ helm-controller: deployment ready
   ✔ kustomize-controller: deployment ready
   ✔ notification-controller: deployment ready
   ✔ source-controller: deployment ready
   ```
3. Create the authentication secret.

   ```bash
   # For username/password or token (HTTP)
   kubectl create secret generic gitlab-auth \
     --namespace=flux-system \
     --from-literal=username=\<GIT\_USERNAME> \
     --from-literal=password=\<GIT\_PASSWORD\_OR\_TOKEN>

   #For SSH-based authentication
   flux create secret git gitlab-auth \
     --namespace=flux-system \
     --url=ssh://git@gitlab.example.com/kspm/kspm-gitops.git \
     --private-key-file=
   ```
4. Create a GitRepository source.

   ```bash
   flux create source git kspm-gitops \
     --url=https://gitlab.example.com/kspm/kspm-gitops.git \
     --branch=main \
     --interval=1m \
     --secret-ref=gitlab-auth \
     --namespace=flux-system
   ```
5. Verify the source is connected.

   ```bash
   flux get source git kspm-gitops
   ```

   ```
   #Expected output:
   NAME         REVISION          SUSPENDED  READY  MESSAGE
   kspm-gitops  main@sha1:abc123  False      True   stored artifact for revision 'main@sha1:abc123'
   ```
6. Deploy the connector.

   ```bash
   flux create kustomization kspm-agent \
     --source=GitRepository/kspm-gitops \
     --path="./charts/overlays" \
     --prune=true \
     --interval=5m
   ```


---

# 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://cortex-docs.paloaltonetworks.com/kubernetes-security/onboard-the-kubernetes-connector/deploy-the-kubernetes-connector-via-gitops/deploy-with-flux-cd.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.
