Skip to content

ZDM-633 version bump, move some topics #204

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 1 commit into from
Jul 11, 2025
Merged
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
5 changes: 3 additions & 2 deletions modules/ROOT/nav.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,13 @@
** xref:ROOT:change-read-routing.adoc[]
* Phase 5
** xref:ROOT:connect-clients-to-target.adoc[]
* References
* Support
** xref:ROOT:troubleshooting-tips.adoc[]
** xref:ROOT:troubleshooting-scenarios.adoc[]
** xref:ROOT:contributions.adoc[]
** xref:ROOT:faqs.adoc[]
** xref:ROOT:glossary.adoc[]
** xref:ROOT:contributions.adoc[]
* Release notes
** {product-proxy-repo}/releases[{product-proxy} release notes]
** {product-automation-repo}/releases[{product-automation} release notes]
Expand Down
12 changes: 6 additions & 6 deletions modules/ROOT/pages/setup-ansible-playbooks.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -105,26 +105,26 @@ ssh -F <path to zdm_ssh_config> jumphost
. From the jumphost, download the latest {product-utility} executable from the {product-automation-repo}/releases[{product-automation} GitHub repository] {product-automation-shield}.
+
The package filename format is `zdm-util-**PLATFORM**-**VERSION**.tgz`.
The following example downloads {product-utility} version 2.3.0 for Linux amd64.
The following example downloads {product-utility} version 2.3.1 for Linux amd64.
To download a different package, change the version and package filename accordingly.
+
[source,bash]
----
wget https://github.com/datastax/zdm-proxy-automation/releases/download/v2.3.0/zdm-util-linux-amd64-v2.3.0.tgz
wget https://github.com/datastax/zdm-proxy-automation/releases/download/v2.3.1/zdm-util-linux-amd64-v2.3.1.tgz
----

. Extract the archive:
+
[source,bash]
----
tar -xvf zdm-util-linux-amd64-v2.3.0.tgz
tar -xvf zdm-util-linux-amd64-v2.3.1.tgz
----

. Run {product-utility}:
+
[source,bash]
----
./zdm-util-v2.3.0
./zdm-util-v2.3.1
----

The utility prompts you for a few configuration values, then creates and initializes the Ansible Control Host container.
Expand All @@ -140,7 +140,7 @@ For example:

[source,bash]
----
./zdm-util-v2.3.0 -utilConfigFile your_config_file
./zdm-util-v2.3.1 -utilConfigFile your_config_file
----
====

Expand Down Expand Up @@ -169,7 +169,7 @@ You can always run {product-utility} again, if necessary.

. You're asked if you have an existing Ansible inventory file.
If you do, and you transferred it to the jumphost, you can just specify it.
If you do not, product-utility} will create one based on your answers to prompts and save it.
If you do not, {product-utility} will create one based on your answers to prompts and save it.
Here we'll assume that you do not have one. Enter `n`.
+
The created file will be named `zdm_ansible_inventory` in your working directory.
Expand Down