Some checks failed
LNM Migration CI / build-runner (push) Has been cancelled
Ledger OpenAPI CI / deprecation-check (push) Has been cancelled
Docs CI / lint-and-preview (push) Has been cancelled
Airgap Sealed CI Smoke / sealed-smoke (push) Has been cancelled
Ledger Packs CI / build-pack (push) Has been cancelled
Export Center CI / export-ci (push) Has been cancelled
Ledger OpenAPI CI / validate-oas (push) Has been cancelled
Ledger OpenAPI CI / check-wellknown (push) Has been cancelled
Ledger Packs CI / verify-pack (push) Has been cancelled
LNM Migration CI / validate-metrics (push) Has been cancelled
AOC Guard CI / aoc-guard (push) Has been cancelled
AOC Guard CI / aoc-verify (push) Has been cancelled
47 lines
1.4 KiB
Plaintext
47 lines
1.4 KiB
Plaintext
---
|
|
# Sample Ansible Inventory for Zastava Agent Deployment
|
|
#
|
|
# Copy this file to inventory.yml and customize for your environment.
|
|
# Then run: ansible-playbook -i inventory.yml zastava-agent.yml
|
|
|
|
all:
|
|
children:
|
|
zastava_agents:
|
|
hosts:
|
|
# Add your VM/bare-metal hosts here
|
|
vm-node-1:
|
|
ansible_host: 192.168.1.101
|
|
ansible_user: ubuntu
|
|
vm-node-2:
|
|
ansible_host: 192.168.1.102
|
|
ansible_user: ubuntu
|
|
# Example with SSH key
|
|
vm-node-3:
|
|
ansible_host: 192.168.1.103
|
|
ansible_user: root
|
|
ansible_ssh_private_key_file: ~/.ssh/stellaops_key
|
|
|
|
vars:
|
|
# Required: Set these for your environment
|
|
zastava_tenant: my-tenant
|
|
scanner_backend_url: https://scanner.example.com
|
|
|
|
# Optional: Override node name per host
|
|
# zastava_node_name: custom-node-name
|
|
|
|
# Optional: Change health check port
|
|
# zastava_health_port: 8080
|
|
|
|
# Optional: Custom Docker socket path
|
|
# docker_socket: /var/run/docker.sock
|
|
|
|
# Optional: Set log level (Verbose, Debug, Information, Warning, Error)
|
|
# zastava_log_level: Information
|
|
|
|
# Optional: Allow insecure HTTP (NOT for production)
|
|
# scanner_backend_insecure: false
|
|
|
|
# Optional: Additional environment variables
|
|
# zastava_extra_env:
|
|
# CUSTOM_VAR: custom_value
|