Sha256: 7610aaad1ac6b46496c20b7ce442aa8eef2375e8e1662e85229d5bba1913a503
Contents?: true
Size: 913 Bytes
Versions: 27
Compression:
Stored size: 913 Bytes
Contents
require 'yaml' module Gitlab module QA module Scenario module Test module Integration class LDAPTLS < LDAP def initialize @gitlab_name = 'gitlab' @spec_suite = 'Test::Integration::LDAPTLS' @tls = true end def configure(gitlab, ldap) ldap.set_accept_insecure_certs gitlab.omnibus_config = <<~OMNIBUS gitlab_rails['ldap_enabled'] = true; gitlab_rails['ldap_servers'] = #{ldap.to_config}; letsencrypt['enable'] = false; external_url '#{gitlab.address}'; gitlab_rails['ldap_sync_worker_cron'] = '* * * * *'; gitlab_rails['ldap_group_sync_worker_cron'] = '* * * * *'; OMNIBUS end end end end end end end
Version data entries
27 entries across 27 versions & 1 rubygems