Created
February 20, 2019 14:10
-
-
Save sochotnicky/22816040f04f5653a2d7e6de4f4804a5 to your computer and use it in GitHub Desktop.
jira_test_principal.py
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import logging | |
| from ticketutil.jira import JiraTicket | |
| logging.basicConfig(level=logging.DEBUG) | |
| # To test run: | |
| # kdestroy | |
| # export KRB5_CLIENT_KTNAME=<path to keytab> | |
| # python <this script> | |
| JIRA_URL = "https://projects.engineering.redhat.com" | |
| t = JiraTicket(JIRA_URL, | |
| "DEVOPSA", | |
| auth='kerberos', | |
| ticket_id="DEVOPSA-1") | |
| JIRA_URL = "https://projects.devel.engineering.redhat.com" | |
| t = JiraTicket(JIRA_URL, | |
| "DEVOPSA", | |
| auth='kerberos', | |
| ticket_id="DEVOPSA-1") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment