Source code for airflow.providers.google.cloud.hooks.kubernetes_engine
## Licensed to the Apache Software Foundation (ASF) under one# or more contributor license agreements. See the NOTICE file# distributed with this work for additional information# regarding copyright ownership. The ASF licenses this file# to you 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.#"""This module contains a Google Kubernetes Engine Hook."""importtimeimportwarningsfromtypingimportDict,Optional,Sequence,Unionfromgoogle.api_core.exceptionsimportAlreadyExists,NotFoundfromgoogle.api_core.gapic_v1.methodimportDEFAULTfromgoogle.api_core.retryimportRetryfromgoogle.cloudimportcontainer_v1,exceptionsfromgoogle.cloud.container_v1.gapic.enumsimportOperationfromgoogle.cloud.container_v1.typesimportClusterfromgoogle.protobuf.json_formatimportParseDictfromairflowimportversionfromairflow.exceptionsimportAirflowExceptionfromairflow.providers.google.common.hooks.base_googleimportGoogleBaseHook
[docs]classGKEHook(GoogleBaseHook):""" Hook for Google Kubernetes Engine APIs. All the methods in the hook where project_id is used must be called with keyword arguments rather than positional. """def__init__(self,gcp_conn_id:str="google_cloud_default",delegate_to:Optional[str]=None,location:Optional[str]=None,impersonation_chain:Optional[Union[str,Sequence[str]]]=None,)->None:super().__init__(gcp_conn_id=gcp_conn_id,delegate_to=delegate_to,impersonation_chain=impersonation_chain,)self._client=Noneself.location=location
# To preserve backward compatibility# TODO: remove one day
[docs]defget_client(self)->container_v1.ClusterManagerClient:warnings.warn("The get_client method has been deprecated. You should use the get_conn method.",DeprecationWarning,)returnself.get_conn()
[docs]defwait_for_operation(self,operation:Operation,project_id:Optional[str]=None)->Operation:""" Given an operation, continuously fetches the status from Google Cloud until either completion or an error occurring :param operation: The Operation to wait for :type operation: google.cloud.container_V1.gapic.enums.Operation :param project_id: Google Cloud project ID :type project_id: str :return: A new, updated operation fetched from Google Cloud """self.log.info("Waiting for OPERATION_NAME %s",operation.name)time.sleep(OPERATIONAL_POLL_INTERVAL)whileoperation.status!=Operation.Status.DONE:ifoperation.status==Operation.Status.RUNNINGoroperation.status==Operation.Status.PENDING:time.sleep(OPERATIONAL_POLL_INTERVAL)else:raiseexceptions.GoogleCloudError(f"Operation has failed with status: {operation.status}")# To update status of operationoperation=self.get_operation(operation.name,project_id=project_idorself.project_id)returnoperation
[docs]defget_operation(self,operation_name:str,project_id:Optional[str]=None)->Operation:""" Fetches the operation from Google Cloud :param operation_name: Name of operation to fetch :type operation_name: str :param project_id: Google Cloud project ID :type project_id: str :return: The new, updated operation from Google Cloud """returnself.get_conn().get_operation(project_id=project_idorself.project_id,zone=self.location,operation_id=operation_name
)@staticmethoddef_append_label(cluster_proto:Cluster,key:str,val:str)->Cluster:""" Append labels to provided Cluster Protobuf Labels must fit the regex ``[a-z]([-a-z0-9]*[a-z0-9])?`` (current airflow version string follows semantic versioning spec: x.y.z). :param cluster_proto: The proto to append resource_label airflow version to :type cluster_proto: google.cloud.container_v1.types.Cluster :param key: The key label :type key: str :param val: :type val: str :return: The cluster proto updated with new label """val=val.replace('.','-').replace('+','-')cluster_proto.resource_labels.update({key:val})returncluster_proto@GoogleBaseHook.fallback_to_default_project_id
[docs]defdelete_cluster(self,name:str,project_id:str,retry:Retry=DEFAULT,timeout:float=DEFAULT)->Optional[str]:""" Deletes the cluster, including the Kubernetes endpoint and all worker nodes. Firewalls and routes that were configured during cluster creation are also deleted. Other Google Compute Engine resources that might be in use by the cluster (e.g. load balancer resources) will not be deleted if they were not present at the initial create time. :param name: The name of the cluster to delete :type name: str :param project_id: Google Cloud project ID :type project_id: str :param retry: Retry object used to determine when/if to retry requests. If None is specified, requests will not be retried. :type retry: google.api_core.retry.Retry :param timeout: The amount of time, in seconds, to wait for the request to complete. Note that if retry is specified, the timeout applies to each individual attempt. :type timeout: float :return: The full url to the delete operation if successful, else None """self.log.info("Deleting (project_id=%s, zone=%s, cluster_id=%s)",project_id,self.location,name)try:resource=self.get_conn().delete_cluster(project_id=project_id,zone=self.location,cluster_id=name,retry=retry,timeout=timeout)resource=self.wait_for_operation(resource)# Returns server-defined url for the resourcereturnresource.self_linkexceptNotFoundaserror:self.log.info('Assuming Success: %s',error.message)returnNone
@GoogleBaseHook.fallback_to_default_project_id
[docs]defcreate_cluster(self,cluster:Union[Dict,Cluster],project_id:str,retry:Retry=DEFAULT,timeout:float=DEFAULT)->str:""" Creates a cluster, consisting of the specified number and type of Google Compute Engine instances. :param cluster: A Cluster protobuf or dict. If dict is provided, it must be of the same form as the protobuf message :class:`google.cloud.container_v1.types.Cluster` :type cluster: dict or google.cloud.container_v1.types.Cluster :param project_id: Google Cloud project ID :type project_id: str :param retry: A retry object (``google.api_core.retry.Retry``) used to retry requests. If None is specified, requests will not be retried. :type retry: google.api_core.retry.Retry :param timeout: The amount of time, in seconds, to wait for the request to complete. Note that if retry is specified, the timeout applies to each individual attempt. :type timeout: float :return: The full url to the new, or existing, cluster :raises: ParseError: On JSON parsing problems when trying to convert dict AirflowException: cluster is not dict type nor Cluster proto type """ifisinstance(cluster,dict):cluster_proto=Cluster()cluster=ParseDict(cluster,cluster_proto)elifnotisinstance(cluster,Cluster):raiseAirflowException("cluster is not instance of Cluster proto or python dict")self._append_label(cluster,'airflow-version','v'+version.version)self.log.info("Creating (project_id=%s, zone=%s, cluster_name=%s)",project_id,self.location,cluster.name)try:resource=self.get_conn().create_cluster(project_id=project_id,zone=self.location,cluster=cluster,retry=retry,timeout=timeout)resource=self.wait_for_operation(resource)returnresource.target_linkexceptAlreadyExistsaserror:self.log.info('Assuming Success: %s',error.message)returnself.get_cluster(name=cluster.name,project_id=project_id)
@GoogleBaseHook.fallback_to_default_project_id
[docs]defget_cluster(self,name:str,project_id:str,retry:Retry=DEFAULT,timeout:float=DEFAULT)->Cluster:""" Gets details of specified cluster :param name: The name of the cluster to retrieve :type name: str :param project_id: Google Cloud project ID :type project_id: str :param retry: A retry object used to retry requests. If None is specified, requests will not be retried. :type retry: google.api_core.retry.Retry :param timeout: The amount of time, in seconds, to wait for the request to complete. Note that if retry is specified, the timeout applies to each individual attempt. :type timeout: float :return: google.cloud.container_v1.types.Cluster """self.log.info("Fetching cluster (project_id=%s, zone=%s, cluster_name=%s)",project_idorself.project_id,self.location,name,)return(self.get_conn().get_cluster(project_id=project_id,zone=self.location,cluster_id=name,retry=retry,timeout=timeout