https://github.com/petermcd/ansible-tickets
Tool to help create Jira tickets based on output received from Ansiblre
https://github.com/petermcd/ansible-tickets
Last synced: 6 days ago
JSON representation
Tool to help create Jira tickets based on output received from Ansiblre
- Host: GitHub
- URL: https://github.com/petermcd/ansible-tickets
- Owner: petermcd
- License: mit
- Created: 2021-03-14T22:44:29.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2024-07-14T19:52:06.000Z (almost 2 years ago)
- Last Synced: 2026-01-22T05:57:39.320Z (5 months ago)
- Language: Python
- Size: 26.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Ansible Ticket Creation
The Ansible ticket creation project is intended to allow Ansible
output to be parsed and tickets created for the failures that
occurred.
## Deployment
This application can be deployed as normal using a virtual
environment and pip such as:
```bash
python3 -m venv /opt/ansible_ticket_creation
. /opt/ansible_ticket_creation/bin/activate
pip install ansible_tickets
```
The script also requires a config file such as:
```yaml
jira_url: http://jira.url
jira_username: USERNAME
jira_password: PASSWORD
jira_project: TEST
ticket_type: Task
```