# Copyright:: Copyright (c) 2014 eGlobalTech, Inc., all rights reserved # # Licensed under the BSD-3 license (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License in the root of the project or at # # http://egt-labs.com/mu/LICENSE.html # # 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. module MU class Cloud class Google # A Kubernetes cluster as configured in {MU::Config::BasketofKittens::container_clusters} class ContainerCluster < MU::Cloud::ContainerCluster @deploy = nil @config = nil attr_reader :mu_name attr_reader :cloud_id attr_reader :config attr_reader :groomer # @param mommacat [MU::MommaCat]: A {MU::Mommacat} object containing the deploy of which this resource is/will be a member. # @param kitten_cfg [Hash]: The fully parsed and resolved {MU::Config} resource descriptor as defined in {MU::Config::BasketofKittens::container_clusters} def initialize(mommacat: nil, kitten_cfg: nil, mu_name: nil, cloud_id: nil) @deploy = mommacat @config = MU::Config.manxify(kitten_cfg) @cloud_id ||= cloud_id # @mu_name = mu_name ? mu_name : @deploy.getResourceName(@config["name"]) @config["groomer"] = MU::Config.defaultGroomer unless @config["groomer"] @groomclass = MU::Groomer.loadGroomer(@config["groomer"]) if !mu_name.nil? @mu_name = mu_name deploydata = describe[2] @config['availability_zone'] = deploydata['zone'] else @mu_name ||= @deploy.getResourceName(@config["name"], max_length: 40) end end # Called automatically by {MU::Deploy#createResources} # @return [String]: The cloud provider's identifier for this GKE instance. def create labels = {} MU::MommaCat.listStandardTags.each_pair { |name, value| if !value.nil? labels[name.downcase] = value.downcase.gsub(/[^a-z0-9\-\_]/i, "_") end } labels["name"] = MU::Cloud::Google.nameStr(@mu_name) @config['availability_zone'] ||= MU::Cloud::Google.listAZs(@config['region']).sample if @vpc.nil? and @config['vpc'] and @config['vpc']['vpc_name'] @vpc = @deploy.findLitterMate(name: @config['vpc']['vpc_name'], type: "vpcs") end if !@vpc raise MuError, "ContainerCluster #{@config['name']} unable to locate its resident VPC from #{@config['vpc']}" end subnet = nil @vpc.subnets.each { |s| if s.az == @config['region'] subnet = s break end } puts @config['credentials'] service_acct = MU::Cloud::Google::Server.createServiceAccount( @mu_name.downcase, @deploy, project: @config['project'], credentials: @config['credentials'] ) MU::Cloud::Google.grantDeploySecretAccess(service_acct.email, credentials: @config['credentials']) @config['ssh_user'] ||= "mu" node_desc = { :machine_type => @config['instance_type'], :preemptible => @config['preemptible'], :disk_size_gb => @config['disk_size_gb'], :labels => labels, :tags => [@mu_name.downcase], :service_account => service_acct.email, :oauth_scopes => ["https://www.googleapis.com/auth/compute", "https://www.googleapis.com/auth/devstorage.read_only"], :metadata => { "ssh-keys" => @config['ssh_user']+":"+@deploy.ssh_public_key } } [:local_ssd_count, :min_cpu_platform, :image_type].each { |field| if @config[field.to_s] node_desc[field] = @config[field.to_s] end } nodeobj = MU::Cloud::Google.container(:NodeConfig).new(node_desc) desc = { :name => @mu_name.downcase, :description => @deploy.deploy_id, :network => @vpc.cloud_id, :subnetwork => subnet.cloud_id, :labels => labels, :resource_labels => labels, :initial_cluster_version => @config['kubernetes']['version'], :initial_node_count => @config['instance_count'], :locations => MU::Cloud::Google.listAZs(@config['region']), :node_config => nodeobj } requestobj = MU::Cloud::Google.container(:CreateClusterRequest).new( :cluster => MU::Cloud::Google.container(:Cluster).new(desc) ) MU.log "Creating GKE cluster #{@mu_name.downcase}", details: desc pp @vpc.subnets.map { |x| x.config['name'] } pp requestobj cluster = MU::Cloud::Google.container(credentials: @config['credentials']).create_cluster( @config['project'], @config['availability_zone'], requestobj ) resp = nil begin resp = MU::Cloud::Google.container(credentials: @config['credentials']).get_zone_cluster(@config["project"], @config['availability_zone'], @mu_name.downcase) sleep 30 if resp.status != "RUNNING" end while resp.nil? or resp.status != "RUNNING" # labelCluster # XXX need newer API release @cloud_id = @mu_name.downcase # XXX wait until the thing is ready end # Locate an existing ContainerCluster or ContainerClusters and return an array containing matching GCP resource descriptors for those that match. # @param cloud_id [String]: The cloud provider's identifier for this resource. # @param region [String]: The cloud provider region # @param tag_key [String]: A tag key to search. # @param tag_value [String]: The value of the tag specified by tag_key to match when searching by tag. # @param flags [Hash]: Optional flags # @return [Array>]: The cloud provider's complete descriptions of matching ContainerClusters def self.find(cloud_id: nil, region: MU.curRegion, tag_key: "Name", tag_value: nil, flags: {}, credentials: nil) flags["project"] ||= MU::Cloud::Google.defaultProject(credentials) end # Called automatically by {MU::Deploy#createResources} def groom deploydata = describe[2] @config['availability_zone'] ||= deploydata['zone'] resp = MU::Cloud::Google.container(credentials: @config['credentials']).get_zone_cluster(@config["project"], @config['availability_zone'], @mu_name.downcase) # pp resp # labelCluster # XXX need newer API release # desired_*: # addons_config # image_type # locations # master_authorized_networks_config # master_version # monitoring_service # node_pool_autoscaling # node_pool_id # node_version # update = { # } # pp update # requestobj = MU::Cloud::Google.container(:UpdateClusterRequest).new( # :cluster => MU::Cloud::Google.container(:ClusterUpdate).new(update) # ) # XXX do all the kubernetes stuff like we do in AWS end # Register a description of this cluster instance with this deployment's metadata. def notify desc = MU.structToHash(MU::Cloud::Google.container(credentials: @config['credentials']).get_zone_cluster(@config["project"], @config['availability_zone'], @mu_name.downcase)) desc["project"] = @config['project'] desc["cloud_id"] = @cloud_id desc["mu_name"] = @mu_name.downcase desc end # Does this resource type exist as a global (cloud-wide) artifact, or # is it localized to a region/zone? # @return [Boolean] def self.isGlobal? false end # Called by {MU::Cleanup}. Locates resources that were created by the # currently-loaded deployment, and purges them. # @param noop [Boolean]: If true, will only print what would be done # @param ignoremaster [Boolean]: If true, will remove resources not flagged as originating from this Mu server # @param region [String]: The cloud provider region in which to operate # @return [void] def self.cleanup(noop: false, ignoremaster: false, region: MU.curRegion, credentials: nil, flags: {}) skipsnapshots = flags["skipsnapshots"] flags["project"] ||= MU::Cloud::Google.defaultProject(credentials) MU::Cloud::Google.listAZs(region).each { |az| found = MU::Cloud::Google.container(credentials: credentials).list_zone_clusters(flags["project"], az) if found and found.clusters found.clusters.each { |cluster| if !cluster.name.match(/^#{Regexp.quote(MU.deploy_id)}\-/i) and cluster.resource_labels['mu-id'] != MU.deploy_id.downcase next end MU.log "Deleting GKE cluster #{cluster.name}" if !noop MU::Cloud::Google.container(credentials: credentials).delete_zone_cluster(flags["project"], az, cluster.name) begin MU::Cloud::Google.container(credentials: credentials).get_zone_cluster(flags["project"], az, cluster.name) sleep 60 rescue ::Google::Apis::ClientError => e if e.message.match(/is currently creating cluster/) sleep 60 retry elsif !e.message.match(/notFound:/) raise e else break end end while true end } end } end # Cloud-specific configuration properties. # @param config [MU::Config]: The calling MU::Config object # @return [Array]: List of required fields, and json-schema Hash of cloud-specific configuration parameters for this resource def self.schema(config) toplevel_required = [] schema = { "local_ssd_count" => { "type" => "integer", "description" => "The number of local SSD disks to be attached to workers. See https://cloud.google.com/compute/docs/disks/local-ssd#local_ssd_limits" }, "disk_size_gb" => { "type" => "integer", "description" => "Size of the disk attached to each worker, specified in GB. The smallest allowed disk size is 10GB", "default" => 100 }, "min_cpu_platform" => { "type" => "string", "description" => "Minimum CPU platform to be used by workers. The instances may be scheduled on the specified or newer CPU platform. Applicable values are the friendly names of CPU platforms, such as minCpuPlatform: 'Intel Haswell' or minCpuPlatform: 'Intel Sandy Bridge'." }, "preemptible" => { "type" => "boolean", "default" => false, "description" => "Whether the workers are created as preemptible VM instances. See: https://cloud.google.com/compute/docs/instances/preemptible for more information about preemptible VM instances." }, "image_type" => { "type" => "string", "description" => "The image type to use for workers. Note that for a given image type, the latest version of it will be used." } } [toplevel_required, schema] end # Cloud-specific pre-processing of {MU::Config::BasketofKittens::container_clusters}, bare and unvalidated. # @param cluster [Hash]: The resource to process and validate # @param configurator [MU::Config]: The overall deployment configurator of which this resource is a member # @return [Boolean]: True if validation succeeded, False otherwise def self.validateConfig(cluster, configurator) ok = true # XXX validate k8s versions (master and node) # XXX validate image types # MU::Cloud::Google.container.get_project_zone_serverconfig(@config["project"], @config['availability_zone']) cluster['instance_type'] = MU::Cloud::Google::Server.validateInstanceType(cluster["instance_type"], cluster["region"]) ok = false if cluster['instance_type'].nil? ok end private def labelCluster labels = {} MU::MommaCat.listStandardTags.each_pair { |name, value| if !value.nil? labels[name.downcase] = value.downcase.gsub(/[^a-z0-9\-\_]/i, "_") end } labels["name"] = MU::Cloud::Google.nameStr(@mu_name) labelset = MU::Cloud::Google.container(:SetLabelsRequest).new( resource_labels: labels ) MU::Cloud::Google.container(credentials: @config['credentials']).resource_project_zone_cluster_labels(@config["project"], @config['availability_zone'], @mu_name.downcase, labelset) end end #class end #class end end #module