Skip to content
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

Add extra requirements.txt ref to the Docs #11497

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ then run the following steps:
cp -rfp inventory/sample inventory/mycluster

# Update Ansible inventory file with inventory builder
# Basides root ``requirements.txt`` , ``inventory builder`` requires some extra Python Packages: ``contrib/inventory_builder/requirements.txt``
declare -a IPS=(10.10.1.3 10.10.1.4 10.10.1.5)
CONFIG_FILE=inventory/mycluster/hosts.yaml python3 contrib/inventory_builder/inventory.py ${IPS[@]}

Expand Down
4 changes: 4 additions & 0 deletions docs/getting_started/setting-up-your-first-cluster.md
Original file line number Diff line number Diff line change
Expand Up @@ -205,6 +205,10 @@ playbook:
```ShellSession
pip install -r requirements.txt
```
Extra Python Packages are required if you want to use ``inventory builder``:
```ShellSession
pip install -r contrib/inventory_builder/requirements.txt
```

Copy ``inventory/sample`` as ``inventory/mycluster``:

Expand Down