-
Notifications
You must be signed in to change notification settings - Fork 5
DOC-5439 doc cleanup 212x #169
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 8 commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
b269781
unify nav
aimurphy f3616ff
pulsar connector link
aimurphy dac3147
next steps
aimurphy eb51f91
trailing plus
aimurphy b604784
misc text cleanup
aimurphy ab0ce19
luna streaming examples repo
aimurphy 2d603e8
asset cleanup
aimurphy 710ed1a
fix links
aimurphy 6c891f3
page-tags and fix 1 code block
aimurphy File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1,25 @@ | ||
| .Get started | ||
| * xref:ROOT:index.adoc[] | ||
| * xref:ROOT:faqs.adoc[] | ||
|
|
||
| .Install and upgrade | ||
| * xref:install-upgrade:quickstart-helm-installs.adoc[] | ||
| * xref:install-upgrade:quickstart-server-installs.adoc[] | ||
|
|
||
| .Components and extensions | ||
| * xref:components:admin-console-tutorial.adoc[] | ||
| * xref:components:admin-console-vm.adoc[] | ||
| * xref:components:pulsar-monitor.adoc[] | ||
| * xref:components:heartbeat-vm.adoc[] | ||
| * xref:components:pulsar-beam.adoc[] | ||
| * xref:components:pulsar-sql.adoc[] | ||
| * xref:components:starlight-for-kafka.adoc[] | ||
| * xref:components:starlight-for-rabbitmq.adoc[] | ||
|
|
||
| .Operations | ||
| * xref:operations:auth.adoc[] | ||
| * xref:operations:functions.adoc[] | ||
| * xref:operations:io-connectors.adoc[] | ||
| * xref:operations:io-elastic-sink.adoc[] | ||
| * xref:operations:scale-cluster.adoc[] | ||
| * xref:operations:troubleshooting.adoc[] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,23 +1,30 @@ | ||
| . Add the DataStax Helm chart repo to your Helm store. | ||
| . Add the DataStax Helm chart repo to your Helm store: | ||
| + | ||
| [source,shell] | ||
| ---- | ||
| include::https://raw.githubusercontent.com/datastaxdevs/luna-streaming-examples/using-s4k-guide/install.sh[tag=helm-repo-add] | ||
| helm repo add datastax-pulsar https://datastax.github.io/pulsar-helm-chart | ||
| ---- | ||
|
|
||
| . Install the Helm chart using a minimalist values file. + | ||
| . Install the Helm chart using a minimalist values file. | ||
| This command creates a Helm release named "my-pulsar-cluster" using the DataStax Luna Helm chart, within the K8s namespace "datastax-pulsar". | ||
| The minimal cluster creates only the essential components and has no ingress or load balanced services. | ||
| + | ||
| [source,shell,subs="attributes+"] | ||
| ---- | ||
| VALUES_URL="{helmValuesPath}" | ||
| include::https://raw.githubusercontent.com/datastaxdevs/luna-streaming-examples/using-s4k-guide/install.sh[tag=helm-install] | ||
| helm install \ | ||
| --namespace datastax-pulsar \ | ||
| --create-namespace \ | ||
| --values $VALUES_URL \ | ||
| --version 3.0.4 \ | ||
| my-pulsar-cluster \ | ||
| datastax-pulsar/pulsar | ||
| ---- | ||
|
|
||
| . Wait for the broker pod to be in a running state. You might see a few restarts as your components start up. | ||
| . Wait for the broker pod to be in a running state. | ||
| You might see a few restarts as your components start up. | ||
| + | ||
| [source,shell,subs="attributes+"] | ||
| ---- | ||
| include::https://raw.githubusercontent.com/datastaxdevs/luna-streaming-examples/using-s4k-guide/install.sh[tag=wait-for-broker] | ||
| kubectl -n datastax-pulsar wait --for=condition=Ready pod/pulsar-broker-0 --timeout=120s | ||
| ---- |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,6 @@ | ||
| In a new terminal, port forward Pulsar’s admin service. | ||
| In a new terminal, port forward Pulsar's admin service: | ||
|
|
||
| [source,shell] | ||
| ---- | ||
| include::https://raw.githubusercontent.com/datastaxdevs/luna-streaming-examples/main/forward-broker-web-service.sh[] | ||
| kubectl port-forward -n datastax-pulsar service/pulsar-broker 8080:8080 | ||
| ---- |
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.