Sha256: c51e95c64acb280124f3711e45e4dd6dfd7f79a7c33cdda9900077a34fb157d6

Contents?: true

Size: 1.85 KB

Versions: 3

Compression:

Stored size: 1.85 KB

Contents

class TestLab

  class Provisioner

    # Resolv Provisioner Error Class
    class ResolvError < ProvisionerError; end

    # Resolv Provisioner Class
    #
    # @author Zachary Patten <zachary AT jovelabs DOT com>
    class Resolv

      def initialize(config={}, ui=nil)
        @config = (config || Hash.new)
        @ui     = (ui     || TestLab.ui)

        @config[:resolv] ||= Hash.new

        @config[:resolv][:servers] ||= Array.new
        @config[:resolv][:servers].unshift([TestLab::Network.ips]).flatten!.compact!

        @config[:resolv][:search] ||= Array.new
        @config[:resolv][:search].unshift([TestLab::Container.domains]).flatten!.compact!

        @ui.logger.debug { "config(#{@config.inspect})" }
      end

      # Resolv: Node Provision
      #
      # @param [TestLab::Node] node The node which we want to provision.
      # @return [Boolean] True if successful.
      def on_node_provision(node)
        @ui.logger.debug { "RESOLV Provisioner: Node #{node.id}" }

        @config[:resolv].merge!(
          :servers => %w(127.0.0.1),
          :object => :node
        )

        node.bootstrap(ZTK::Template.render(provision_template, @config))

        true
      end

      # Resolv: Container Provision
      #
      # @param [TestLab::Container] container The container which we want to
      #   provision.
      # @return [Boolean] True if successful.
      def on_container_provision(container)
        @ui.logger.debug { "RESOLV Provisioner: Container #{container.id}" }

        @config[:resolv].merge!(
          :object => :container
        )

        container.bootstrap(ZTK::Template.render(provision_template, @config))

        true
      end
      alias :on_container_up :on_container_provision

    private

      def provision_template
        File.join(TestLab::Provisioner.template_dir, 'resolv', 'provision.erb')
      end

    end

  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
testlab-1.18.0 lib/testlab/provisioners/resolv.rb
testlab-1.17.0 lib/testlab/provisioners/resolv.rb
testlab-1.16.1 lib/testlab/provisioners/resolv.rb