Merge pull request #8213 from ryanpetrello/galaxy-ignore-certs-ui

expose GALAXY_IGNORE_CERTS in the job settings UI

Reviewed-by: https://github.com/apps/softwarefactory-project-zuul
This commit is contained in:
softwarefactory-project-zuul[bot] 2020-09-23 13:15:28 +00:00 committed by GitHub
commit ee3f835ea9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 1 deletions

View File

@ -440,7 +440,7 @@ register(
field_class=fields.BooleanField,
default=False,
label=_('Ignore Ansible Galaxy SSL Certificate Verification'),
help_text=_('If set to true, certificate validation will not be done when'
help_text=_('If set to true, certificate validation will not be done when '
'installing content from any Galaxy server.'),
category=_('Jobs'),
category_slug='jobs'

View File

@ -65,6 +65,9 @@ export default ['i18n', function(i18n) {
PROJECT_UPDATE_VVV: {
type: 'toggleSwitch',
},
GALAXY_IGNORE_CERTS: {
type: 'toggleSwitch',
},
AWX_ROLES_ENABLED: {
type: 'toggleSwitch',
},