You've already forked ansible_navigator
22 lines
706 B
YAML
22 lines
706 B
YAML
---
|
|
# ansible-navigator configuration file, added in home directory as .ansible-navigator.yml
|
|
ansible-navigator:
|
|
ansible:
|
|
config:
|
|
path: /home/YOURUSER/.ansible.cfg
|
|
app: run
|
|
execution-environment:
|
|
container-engine: podman
|
|
enabled: true
|
|
image: example.com/execution-environment:latest
|
|
pull:
|
|
policy: tag
|
|
# Output to stdout, to look and function identically as normal ansible-playbook command.
|
|
mode: stdout
|
|
# Normally ansible-navigator outputs the entire play output/result into an artifact file. Disable that, as it quickly bloats.
|
|
playbook-artifact:
|
|
enable: false
|
|
# Disable generation of log files from ansible-navigator.
|
|
logging:
|
|
file: /dev/null
|