Sha256: 3a1c9393f1e6bbade324bb9b3d70ae3195e810850625b84c1bfaa3450c0988b2

Contents?: true

Size: 1.95 KB

Versions: 5

Compression:

Stored size: 1.95 KB

Contents

# frozen_string_literal: true
#
# Author:: Chef Partner Engineering (<partnereng@chef.io>)
# Copyright:: Copyright (c) 2016 Chef Software, Inc.
# License:: Apache License, Version 2.0
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#

class Chef::Knife::Cloud
  module GoogleServiceHelpers
    REQUIRED_KEYS = [:gce_project, :gce_zone]

    def create_service_instance
      Chef::Knife::Cloud::GoogleService.new(
        project:       locate_config_value(:gce_project),
        zone:          locate_config_value(:gce_zone),
        wait_time:     locate_config_value(:request_timeout),
        refresh_rate:  locate_config_value(:request_refresh_rate),
        max_pages:     locate_config_value(:max_pages),
        max_page_size: locate_config_value(:max_page_size)
      )
    end

    def check_for_missing_config_values!(*keys)
      keys_to_check = REQUIRED_KEYS + keys

      missing = keys_to_check.select { |x| locate_config_value(x).nil? }

      unless missing.empty?
        message = "The following required parameters are missing: #{missing.join(', ')}"
        ui.error(message)
        raise message
      end
    end

    def private_ip_for(server)
      server.network_interfaces.first.network_ip
    rescue NoMethodError
      "unknown"
    end

    def public_ip_for(server)
      server.network_interfaces.first.access_configs.first.nat_ip
    rescue NoMethodError
      "unknown"
    end

    def valid_disk_size?(size)
      size.between?(10, 10_000)
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
knife-google-3.3.3 lib/chef/knife/cloud/google_service_helpers.rb
knife-google-3.3.0 lib/chef/knife/cloud/google_service_helpers.rb
knife-google-3.2.0 lib/chef/knife/cloud/google_service_helpers.rb
knife-google-3.1.1 lib/chef/knife/cloud/google_service_helpers.rb
knife-google-3.1.0 lib/chef/knife/cloud/google_service_helpers.rb