lib/gitlab/qa/component/elasticsearch.rb



module Gitlab
  module QA
    module Component
      class Elasticsearch < Base
        DOCKER_IMAGE = 'docker.elastic.co/elasticsearch/elasticsearch'.freeze

        def name
          @name ||= "elastic68"
        end

        def tag
          Runtime::Env.elastic_version
        end

        def start
          @docker.run(image: image, tag: tag) do |command|
            command << "-d"
            command << "--name #{name}"
            command << "--net #{network}"
            command << "--publish 9200:9200"
            command << "--publish 9300:9300"

            command.env("discovery.type", "single-node")
          end
        end
      end
    end
  end
end