mirror of
https://github.com/ansible/awx.git
synced 2024-11-01 16:51:11 +03:00
Merge pull request #6736 from ryanpetrello/fix-6659
make isolated rampart settings API-configurable
This commit is contained in:
commit
2d9df199c6
@ -155,6 +155,24 @@ register(
|
|||||||
category_slug='jobs',
|
category_slug='jobs',
|
||||||
)
|
)
|
||||||
|
|
||||||
|
register(
|
||||||
|
'AWX_ISOLATED_CHECK_INTERVAL',
|
||||||
|
field_class=fields.IntegerField,
|
||||||
|
label=_('Isolated status check interval'),
|
||||||
|
help_text=_('The number of seconds to sleep between status checks for jobs running on isolated instances.'), # noqa
|
||||||
|
category=_('Jobs'),
|
||||||
|
category_slug='jobs',
|
||||||
|
)
|
||||||
|
|
||||||
|
register(
|
||||||
|
'AWX_ISOLATED_LAUNCH_TIMEOUT',
|
||||||
|
field_class=fields.IntegerField,
|
||||||
|
label=_('Isolated launch timeout'),
|
||||||
|
help_text=_('The timeout (in seconds) for launching jobs on isolated instances. This includes the time needed to copy source control files (playbooks) to the isolated instance.'),
|
||||||
|
category=_('Jobs'),
|
||||||
|
category_slug='jobs',
|
||||||
|
)
|
||||||
|
|
||||||
register(
|
register(
|
||||||
'STDOUT_MAX_BYTES_DISPLAY',
|
'STDOUT_MAX_BYTES_DISPLAY',
|
||||||
field_class=fields.IntegerField,
|
field_class=fields.IntegerField,
|
||||||
|
@ -609,7 +609,8 @@ AWX_ISOLATED_CHECK_INTERVAL = 30
|
|||||||
|
|
||||||
# The timeout (in seconds) for launching jobs on isolated nodes
|
# The timeout (in seconds) for launching jobs on isolated nodes
|
||||||
AWX_ISOLATED_LAUNCH_TIMEOUT = 600
|
AWX_ISOLATED_LAUNCH_TIMEOUT = 600
|
||||||
# The time between the background isolated heartbeat status check
|
|
||||||
|
# The time (in seconds) between the periodic isolated heartbeat status check
|
||||||
AWX_ISOLATED_PERIODIC_CHECK = 600
|
AWX_ISOLATED_PERIODIC_CHECK = 600
|
||||||
|
|
||||||
# Enable Pendo on the UI, possible values are 'off', 'anonymous', and 'detailed'
|
# Enable Pendo on the UI, possible values are 'off', 'anonymous', and 'detailed'
|
||||||
|
Loading…
Reference in New Issue
Block a user