Skip to content

Commit

Permalink
move customization instructions below cleanup for better flow and int…
Browse files Browse the repository at this point in the history
…roduce RPCN
  • Loading branch information
JakeSCahill committed Feb 19, 2025
1 parent 0694318 commit de15ef8
Showing 1 changed file with 19 additions and 18 deletions.
37 changes: 19 additions & 18 deletions modules/get-started/pages/quick-start.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -577,7 +577,7 @@ See also: xref:manage:tiered-storage.adoc[].

== Deploy a pipeline with Redpanda Connect

To deploy a data streaming pipeline in Redpanda, you can configure and run connectors that ingest, transform, and route data between various sources and sinks. Redpanda Connect simplifies this process by allowing you to manage these pipelines using declarative YAML configuration files and the `rpk` CLI.
Redpanda Connect is a powerful tool that allows you to build and manage data streaming pipelines. It supports hundreds of connectors for various systems, enabling seamless data ingestion, transformation, and routing between different sources and sinks. Using declarative YAML configuration files and the `rpk` CLI, you can quickly set up and deploy complex data pipelines in Redpanda.

. Deploy the example pipeline:
+
Expand Down Expand Up @@ -636,6 +636,24 @@ https://www.redpanda.com/upgrade[Upgrade to Redpanda Enterprise^].

See also: xref:get-started:licensing/index.adoc[].

== Clean up

To reset your environment, shut down the running processes and delete the containers:

```bash
docker compose down
```

To delete the volumes along with all your cluster data:

```bash
docker compose down -v
```

// (step {"action":"runShell", "command": "rpk profile delete quickstart"})
// (step {"action":"runShell", "command": "docker compose down -v", "workingDirectory": "../docker-compose"})
// (test end)

== Customize the Docker quickstart

To customize this quickstart, you can configure Redpanda, Redpanda Console, or Redpanda Connect using the provided Docker Compose file. This allows you to tailor the services to fit your specific requirements.
Expand Down Expand Up @@ -762,23 +780,6 @@ To create new data pipelines, run `rpk connect run`, specifying the path to your
rpk connect run <path-to-config>
----

== Clean up

To reset your environment, shut down the running processes and delete the containers:

```bash
docker compose down
```

To delete the volumes along with all your cluster data:

```bash
docker compose down -v
```

// (step {"action":"runShell", "command": "rpk profile delete quickstart"})
// (step {"action":"runShell", "command": "docker compose down -v", "workingDirectory": "../docker-compose"})
// (test end)

== Next steps

Expand Down

0 comments on commit de15ef8

Please sign in to comment.