Sha256: aa53017d4bee91b2ef6f354915a39dc3d2a3b87b056bf487ea6d46835056e1a0
Contents?: true
Size: 957 Bytes
Versions: 73
Compression:
Stored size: 957 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.omnibus_configuration << <<~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
73 entries across 73 versions & 1 rubygems