Sha256: 9971c3d6afc637d80ed12f2ecc1c9366bef710f937f174c6395f8d225a312805
Contents?: true
Size: 949 Bytes
Versions: 3
Compression:
Stored size: 949 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_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
3 entries across 3 versions & 1 rubygems