softwarefactory-project-zuul[bot]
6a003919c0
Merge pull request #6936 from jlmitch5/defaultsInQS
...
add defaults to qs instead of passing as additional params to api requests
Reviewed-by: https://github.com/apps/softwarefactory-project-zuul
2020-05-11 18:30:35 +00:00
softwarefactory-project-zuul[bot]
3f94657cdb
Merge pull request #6937 from jlmitch5/addDescripToTemplatesList
...
adds description-based search to templates list
Reviewed-by: https://github.com/apps/softwarefactory-project-zuul
2020-05-11 18:27:51 +00:00
Keith Grant
dfecd4ad9d
fix tests
2020-05-11 11:17:09 -07:00
Keith Grant
0b207e02ab
set fields touched when steps marked as visited
2020-05-11 11:17:09 -07:00
Keith Grant
59e3306a3c
merge survey fields into rest of jt promt form
2020-05-11 11:17:09 -07:00
Keith Grant
da8f486c5d
flush out prompt validation errors
2020-05-11 11:17:09 -07:00
Keith Grant
1ac92b0493
add rough jt launch prompt validation
2020-05-11 11:17:09 -07:00
Keith Grant
11752e123d
converting prompt steps to hook-based approach
2020-05-11 11:17:09 -07:00
Keith Grant
5c2eebf692
working on prompts validation
2020-05-11 11:17:09 -07:00
Keith Grant
9b3b20c96b
mask passwords in launch preview step
2020-05-11 11:17:09 -07:00
Keith Grant
91d4948564
use PromptDetail in launch prompt preview
2020-05-11 11:17:09 -07:00
Bill Nottingham
345f1db994
Don't uninstall pycurl, but do build it from source.
...
oVirt requires something newer, but we can't use the wheel.
2020-05-11 13:11:19 -04:00
Alex Corey
9360d3fabc
fixes erroneously invalidating responses
2020-05-11 12:17:22 -04:00
softwarefactory-project-zuul[bot]
1ca3d1fe3b
Merge pull request #6979 from wenottingham/nobody-pexpects-a-timeout-inquisition
...
Remove pexpect_timeout setting for ansible-runner
Reviewed-by: https://github.com/apps/softwarefactory-project-zuul
2020-05-11 15:33:07 +00:00
chris meyers
216454d298
cleanup channel groups on start
...
* There are 2 data-structures that django channels redis uses: (1) zset
and (2) list. (1) is used for group membership where the key is the
logic user group and the value(s) are websocket clients. The score of
the zset entry is used for group expiration. We can not rely on group
expiration for clean-up because there is no interface privided by redis
channels to refresh the expiration. Choosing a small value for
group_expiry could result on our websocket backplane group expiring,
which would result in job events not being delivered. Instead, we
increase the group expiration to 5 years and clean up on daphne service
start.
* The list (2) data-structure is used by django channels redis to queue
websocket events per-websocket-client as needed. The need arises to
queue per-websocket-client events when the consumer can not keep up with
the producer. The consumer here is daphne, the producer is AWX.
* When AWX is operating healthy group membership in Redis is reflective
of the real-world. When AWX is unhealthy i.e. daphne cycles, the zset
will contain stale websocket client entries. This can be observed by
running `zrange asgi::group:jobs-status_changed 0 -1`. If the entries
returned look like:
specific.fUkXXpYj!DKOIfwPICNgw
specific.fUkXXpYj!FQcdopZeiRdG
specific.lpTSAgnk!IOKldfzcfdDp
specific.lpTSAgnk!NbvRUZsDpIQx
The entries with `fUkXXpYj` are stale. Note that this changeset fixes
this by removing all `asgi:*` entries on daphne start.
* Also note that individual message themselves have an expiration that
is configurable and defaults to 60.
* Also note that zset's tracking group membership will be deleted by
django channels redis when they are empty.
2020-05-11 11:02:57 -04:00
softwarefactory-project-zuul[bot]
6b8359fc2f
Merge pull request #6980 from ryanpetrello/yet-another-downstream-merge
...
merge in a few downstream fixes
Reviewed-by: https://github.com/apps/softwarefactory-project-zuul
2020-05-08 21:14:54 +00:00
Ryan Petrello
086d6951b4
Merge branch 'downstream' into devel
2020-05-08 16:48:48 -04:00
Bill Nottingham
8cdffd0dd0
Remove pexpect_timeout setting for ansible-runner
...
PEXPECT_TIMEOUT has never(?) been an actual setting, and 5 is the
runner default anyway.
2020-05-08 16:31:11 -04:00
Ryan Petrello
9668d18203
Merge pull request #4313 from ryanpetrello/more-fips-monkey-business
...
monkey-patch another Django names_digest for FIPS support
2020-05-08 15:14:25 -04:00
softwarefactory-project-zuul[bot]
5e02e6e4a4
Merge pull request #6974 from ansible/jakemcdermott-document-installer-prereqs
...
Document node and npm installation prerequisites
Reviewed-by: https://github.com/apps/softwarefactory-project-zuul
2020-05-08 18:50:12 +00:00
Jake McDermott
6f872bf752
Document node and npm installation prerequisites
2020-05-08 14:25:00 -04:00
Ryan Petrello
814f033d46
monkey-patch another Django names_digest for FIPS support
2020-05-08 14:12:50 -04:00
softwarefactory-project-zuul[bot]
ff573e06b3
Merge pull request #6916 from nixocio/ui_issue_6742
...
Use Webhook Fields in WFJT Form
Reviewed-by: https://github.com/apps/softwarefactory-project-zuul
2020-05-08 17:49:43 +00:00
Alex Corey
2cbcbddc52
Adds more testing for Urls
2020-05-08 12:15:02 -04:00
Alex Corey
68d56d5616
Adds User Access List
2020-05-08 12:03:27 -04:00
nixocio
0b8aabbd16
Use Webhook Fields in WFJT Form
...
Update WorkflowJobTemplateForm to use `WebhookSubForm`. Also, update
related unit-tests.
closes: https://github.com/ansible/awx/issues/6742
2020-05-08 11:55:23 -04:00
softwarefactory-project-zuul[bot]
8c57a92a65
Merge pull request #6898 from marshmalien/6575-inv-src-add
...
Add inventory source create form
Reviewed-by: https://github.com/apps/softwarefactory-project-zuul
2020-05-08 14:12:03 +00:00
softwarefactory-project-zuul[bot]
77ee2191ed
Merge pull request #6926 from nixocio/ui_issue_6887
...
Fix Button 'Create' - to be marked for translation
Reviewed-by: https://github.com/apps/softwarefactory-project-zuul
2020-05-08 14:07:51 +00:00
softwarefactory-project-zuul[bot]
a3463e87b5
Merge pull request #6924 from nixocio/ui_issue_6859
...
Fix Survey, check label 'Required' translation
Reviewed-by: https://github.com/apps/softwarefactory-project-zuul
2020-05-08 14:07:43 +00:00
Christian Adams
c494c38966
Merge pull request #4294 from ansible/i18n_release_3.7.0_translations
...
[WIP] UI translation strings for release_3.7.0 branch
2020-05-08 09:56:40 -04:00
Marliana Lara
58c85ab03f
Add cache timeout and inventory file validation
2020-05-07 23:26:31 -04:00
Bill Nottingham
64add6e907
Merge pull request #4305 from wenottingham/why-fix-a-parser-when-you-can-delete-it
...
Remove ssh version checking.
2020-05-07 17:07:56 -04:00
beeankha
10be375137
Update Makefile to find correct python path for testing
2020-05-07 16:37:04 -04:00
Bill Nottingham
4c6cac90fd
Remove ssh version checking.
...
6.6 was added in RHEL 7.1, which is well before our supported platforms.
2020-05-07 15:30:55 -04:00
John Westcott IV
1d91387f58
Adding validation of rrule output thorugh awx searlizer
2020-05-07 14:42:47 -04:00
AlanCoding
d825cca9f2
Unit testing of tower_schedule
...
Move previously integration tests of lookup plugin to unit tests
delete all integration tests except some basic demo tests
do simple create unit test
2020-05-07 14:42:47 -04:00
John Westcott IV
694c7e8af5
Remocing doc fragment extension
2020-05-07 14:42:47 -04:00
John Westcott IV
2ed3a39b46
Changing import
2020-05-07 14:42:47 -04:00
beeankha
dd49f747a0
Fix linter error
2020-05-07 14:42:47 -04:00
John Westcott IV
0eb7e22d1f
Adding requirements on pytz and python.dateutil for rrule lookup plugin
2020-05-07 14:42:47 -04:00
beeankha
677ff99eb4
Make minor changes to fix sanity test results
2020-05-07 14:42:47 -04:00
John Westcott IV
12805954e0
Adding rrule lookup plugin
2020-05-07 14:42:46 -04:00
John Westcott IV
0e1a2b899a
Initial version of tower_schedule
2020-05-07 14:42:46 -04:00
Christian Adams
bae9c03258
Merge pull request #4302 from rooftopcellist/rsyslog_conf_race
...
Prevent Rsyslog config race condition when writing to file
2020-05-07 14:21:57 -04:00
softwarefactory-project-zuul[bot]
420c75f76f
Merge pull request #6965 from beeankha/jt_integration_test_edit
...
Update JT Integration Test
Reviewed-by: https://github.com/apps/softwarefactory-project-zuul
2020-05-07 18:07:38 +00:00
softwarefactory-project-zuul[bot]
d58ea85584
Merge pull request #6964 from beeankha/notifications_for_wfjt_module
...
Add Notification Association Functionality to tower_workflow_job_template Module
Reviewed-by: https://github.com/apps/softwarefactory-project-zuul
2020-05-07 17:13:31 +00:00
Christian Adams
37125102ab
Clean up rsyslog config temp dir
...
- dir is cleaned up at end of 'with' context
2020-05-07 12:48:50 -04:00
beeankha
c6d77a1183
Update JT integration test
2020-05-07 12:02:08 -04:00
beeankha
8f1fccefeb
Add notification association functionality to tower_workflow_job_template module, along with updated integration/unit tests
2020-05-07 11:44:43 -04:00
Marliana Lara
4b53875a71
Clear inv src subform values when source value changes
...
* Test that inv file field resets when project value changes
* Remove project and inv file path from API request when type is SCM
* Update checkbox tooltip to accept node proptypes
* Format option field tooltips
2020-05-07 08:57:08 -04:00