Guide for using HotsTac(k)os with HotStack scenarios.
HotsTac(k)os must be installed and running. See INSTALL.md for installation instructions.
Install the OpenStack client packages on your host:
sudo make install-clientThis installs:
python3-openstackclient- Main OpenStack CLIpython3-heatclient- Heat orchestration CLI
Note: You can also install these in a Python virtualenv if you prefer not to install system-wide.
make post-setupThis creates resources needed by HotStack scenarios:
- HotStack project and user (hotstack/hotstack)
- Quotas for hotstack project (40 cores, 100GB RAM, 1TB storage)
- Compute flavors (hotstack.small, medium, large, etc.) - shared/public
- Default private network (192.168.100.0/24) - shared
- Provider network (172.31.0.128/25) - shared, for floating IPs
- Router connecting private and external networks
- Security group rules (SSH, ICMP) for both admin and hotstack projects
- Test images (Cirros, CentOS Stream 9) - public
- HotStack images (controller, blank, nat64, iPXE BIOS/EFI) - downloaded from GitHub releases and uploaded
- Application credential (hotstack-cred) for the hotstack project
cloud-secret.yamlfile in the repository root (ready for use with HotStack scenarios)
Note: Images are downloaded from the latest GitHub releases. If an image is not found, you may need to run the GitHub workflow to build and publish it first.
# Use the hotstack user credentials
export OS_CLOUD=hotstack-os
# Verify resources are available
openstack network list
openstack flavor list
openstack image list
# Verify cloud-secret.yaml was created
ls -l ../../cloud-secret.yamlcd ../../ # Back to hotstack root
# Install Ansible (if not already installed)
sudo dnf install ansible-core
# Or: pip install ansible
# Install required Ansible collections
ansible-galaxy collection install -r requirements.yml# Run any HotStack scenario
ansible-playbook bootstrap.yml \
-e @scenarios/sno-2-bm/bootstrap_vars.yml \
-e @cloud-secret.yamlNote: The cloud-secret.yaml file is automatically created in the repository root by make post-setup. If you need to recreate it, simply re-run make post-setup or see the main README for manual credential creation.
- README.md - Overview and management commands
- INSTALL.md - Installation guide
- ARCHITECTURE.md - Architecture details
- CONFIGURATION.md - Configuration options
- TROUBLESHOOTING.md - Common problems and solutions
- SMOKE_TEST.md - Validation tests