Sha256: 4945fa3ab5556ecd89527c857a6d7ea0ff25cfedfce779b9f77dc746b6d6aed3
Contents?: true
Size: 996 Bytes
Versions: 79
Compression:
Stored size: 996 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' @orchestrate_ldap_server = true @tls = true super end def configure_omnibus(gitlab) gitlab.set_accept_insecure_certs gitlab.omnibus_config = <<~OMNIBUS gitlab_rails['ldap_enabled'] = true; gitlab_rails['ldap_servers'] = #{ldap_servers_omnibus_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
79 entries across 79 versions & 1 rubygems