Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 10 additions & 4 deletions antora.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,24 @@
name: ROOT
name: streaming
title: Enterprise
version: 23.3
start_page: get-started:intro-to-events.adoc
nav:
- modules/ROOT/nav.adoc
asciidoc:
attributes:
# Product name used throughout the documentation
# Date of release in the format YYYY-MM-DD
page-release-date: 2023-12-22
page-eol: true
# Only used in the main branch (latest version)
page-header-data:
title: "Streaming"
section: "Data Platform"
parent-component: "self-managed"
description: "Redpanda broker and rpk CLI for self-managed deployments."
color: "#125d56"
order: 2
color: '#125d56'
icon: "activity"
# Fallback versions
# We try to fetch the latest from GitHub at build time
# --
Expand Down Expand Up @@ -83,7 +89,7 @@ asciidoc:
- title: 'Redpanda Connect'
image: redpanda-connect.png
description: 'Redpanda Connect provides an ecosystem of 220+ open source connectors.'
url: 'redpanda-connect:ROOT:about.adoc'
url: 'connect:ROOT:about.adoc'
learn-text: true
- title: 'Use rpk'
image: rpk-commands.png
Expand All @@ -98,5 +104,5 @@ asciidoc:
- title: 'Labs'
image: labs.png
description: 'Explore real-world examples in Redpanda Labs.'
url: 'redpanda-labs:ROOT:index.adoc'
url: 'labs:ROOT:index.adoc'
learn-text: true
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
= Next steps

* xref:redpanda-labs:ROOT:index.adoc[Try an example in Redpanda Labs]
* xref:labs:ROOT:index.adoc[Try an example in Redpanda Labs]
* xref:manage:console/index.adoc[Learn more about Redpanda Console]
* xref:get-started:rpk-install.adoc[Learn more about rpk]

Expand Down
2 changes: 1 addition & 1 deletion modules/develop/pages/http-proxy.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ Curl is likely already installed on your system. If not, see https://curl.se/dow
NodeJS::
+
--
NOTE: This is based on the assumption that you're in the root directory of an existing NodeJS project. See xref:redpanda-labs:clients:docker-nodejs.adoc[] for an example of a NodeJS project.
NOTE: This is based on the assumption that you're in the root directory of an existing NodeJS project. See xref:labs:clients:docker-nodejs.adoc[] for an example of a NodeJS project.

In a terminal window, run:

Expand Down
2 changes: 1 addition & 1 deletion modules/get-started/pages/intro-to-events.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ Redpanda Cloud releases on a continuous basis and uptakes Redpanda platform vers
* To spin up a Redpanda cluster to try it out, see xref:./quick-start.adoc[Redpanda Quickstart].
* To learn more about Redpanda, see xref:./architecture.adoc[How Redpanda Works].
* For information about a self-hosted Redpanda platform deployment, see xref:./licenses.adoc[Redpanda Licensing].
* For information about a Redpanda Cloud deployment, see xref:redpanda-cloud:get-started:cloud-overview.adoc[].
* For information about a Redpanda Cloud deployment, see xref:cloud-data-platform:get-started:cloud-overview.adoc[].

include::shared:partial$suggested-reading.adoc[]

Expand Down
2 changes: 1 addition & 1 deletion modules/get-started/pages/intro-to-rpk.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ In general, `rpk` commands can be divided into these categories:

The `rpk` binary is bundled with Redpanda, so it is automatically installed on each Redpanda broker. In addition, you can install `rpk` on your local machine as a xref:./rpk-install.adoc[standalone binary]. This method can be used for self-hosted and cloud deployments, as well as Kubernetes deployments.

After you install `rpk`, you can use it to interact with a Redpanda cluster. The cluster can run on your local machine, or it can run externally on a remote server or on xref:redpanda-cloud:deploy:deployment-option/cloud/index.adoc[Redpanda Cloud], for example.
After you install `rpk`, you can use it to interact with a Redpanda cluster. The cluster can run on your local machine, or it can run externally on a remote server or on xref:cloud-data-platform:deploy:deployment-option/cloud/index.adoc[Redpanda Cloud], for example.

The following diagram shows how `rpk` communicates with a Redpanda broker installed on your local machine. The `rpk` binary is installed as part of the Redpanda bundle.

Expand Down
2 changes: 1 addition & 1 deletion modules/get-started/pages/licenses.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
:description: Redpanda is free and source-available at the Redpanda GitHub repo. Additional features are included with an enterprise license.
:page-aliases: introduction:licenses.adoc

You can deploy Redpanda in a self-hosted environment (Redpanda platform) or as a fully-managed cloud service (Redpanda Cloud). For more information about Redpanda Cloud deployments, see the xref:redpanda-cloud:get-started:cloud-overview.adoc[].
You can deploy Redpanda in a self-hosted environment (Redpanda platform) or as a fully-managed cloud service (Redpanda Cloud). For more information about Redpanda Cloud deployments, see the xref:cloud-data-platform:get-started:cloud-overview.adoc[].

To self-host Redpanda platform, select either the Community Edition or the Enterprise Edition:

Expand Down
10 changes: 5 additions & 5 deletions modules/get-started/pages/quick-start.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -47,15 +47,15 @@ For production environments where you need more resilience, a three-broker setup
Single Broker::
+
--
. xref:redpanda-labs:docker-compose:attachment$single-broker/docker-compose.yml[Download] the following `docker-compose.yml` file on your local file system.
. xref:labs:docker-compose:attachment$single-broker/docker-compose.yml[Download] the following `docker-compose.yml` file on your local file system.
+
.Reveal the YAML content
[%collapsible]
====
.`docker-compose.yml`
[,yaml,subs="attributes+"]
----
include::redpanda-labs:docker-compose:attachment$single-broker/docker-compose.yml[]
include::labs:docker-compose:attachment$single-broker/docker-compose.yml[]
----
====

Expand All @@ -78,15 +78,15 @@ Three Brokers::
+
--

. xref:redpanda-labs:docker-compose:attachment$three-brokers/docker-compose.yml[Download] the following `docker-compose.yml` file on your local file system.
. xref:labs:docker-compose:attachment$three-brokers/docker-compose.yml[Download] the following `docker-compose.yml` file on your local file system.
+
.Reveal the YAML content
[%collapsible]
====
.`docker-compose.yml`
[,yaml,subs="attributes+"]
----
include::redpanda-labs:docker-compose:attachment$three-brokers/docker-compose.yml[]
include::labs:docker-compose:attachment$three-brokers/docker-compose.yml[]
----
====

Expand Down Expand Up @@ -299,7 +299,7 @@ docker compose down -v

== Next steps

- xref:redpanda-labs:ROOT:index.adoc[Try more examples in Redpanda Labs]
- xref:labs:ROOT:index.adoc[Try more examples in Redpanda Labs]
- xref:manage:console/index.adoc[Learn more about Redpanda Console]
- xref:rpk-install.adoc[Learn more about rpk]
- xref:deploy:deployment-option/self-hosted/manual/production/index.adoc[Deploy for development or production]
Expand Down
2 changes: 1 addition & 1 deletion modules/get-started/pages/whats-new.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

This topic summarizes new content added in version 23.3. For a complete list of all product updates, see the https://github.com/redpanda-data/redpanda/releases/[Redpanda release notes^].

See also: xref:redpanda-cloud:get-started:whats-new-cloud.adoc[]
See also: xref:cloud-data-platform:get-started:whats-new-cloud.adoc[]

== Data transforms

Expand Down