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... spelling:: gapic enums"""importjsonimporttimeimportwarningsfromtypingimportDict,Optional,Sequence,Unionfromgoogle.api_core.exceptionsimportAlreadyExists,NotFoundfromgoogle.api_core.gapic_v1.methodimportDEFAULT,_MethodDefaultfromgoogle.api_core.retryimportRetry# not sure why but mypy complains on missing `container_v1` but it is clearly there and is importablefromgoogle.cloudimportcontainer_v1,exceptions# type: ignore[attr-defined]fromgoogle.cloud.container_v1importClusterManagerClientfromgoogle.cloud.container_v1.typesimportCluster,Operationfromairflowimportversionfromairflow.exceptionsimportAirflowExceptionfromairflow.providers.google.common.constsimportCLIENT_INFOfromairflow.providers.google.common.hooks.base_googleimportPROVIDE_PROJECT_ID,GoogleBaseHook
[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=None# type: Optional[ClusterManagerClient]self.location=location
# To preserve backward compatibility# TODO: remove one day
[docs]defget_conn(self)->container_v1.ClusterManagerClient:warnings.warn("The get_conn method has been deprecated. You should use the get_cluster_manager_client method.",DeprecationWarning,)returnself.get_cluster_manager_client()
# To preserve backward compatibility# TODO: remove one day
[docs]defget_client(self)->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 :param project_id: Google Cloud project ID :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 :param project_id: Google Cloud project ID :return: The new, updated operation from Google Cloud """returnself.get_cluster_manager_client().get_operation(name=(f'projects/{project_idorself.project_id}'
f'/locations/{self.location}/operations/{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 :param key: The key label :param val: :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=PROVIDE_PROJECT_ID,retry:Union[Retry,_MethodDefault]=DEFAULT,timeout:Optional[float]=None,)->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 :param project_id: Google Cloud project ID :param retry: Retry object used to determine when/if to retry requests. If None is specified, requests will not be retried. :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. :return: The full url to the delete operation if successful, else None """self.log.info("Deleting (project_id=%s, location=%s, cluster_id=%s)",project_id,self.location,name)try:resource=self.get_cluster_manager_client().delete_cluster(name=f'projects/{project_id}/locations/{self.location}/clusters/{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,None],project_id:str=PROVIDE_PROJECT_ID,retry:Union[Retry,_MethodDefault]=DEFAULT,timeout:Optional[float]=None,)->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` :param project_id: Google Cloud project ID :param retry: A retry object (``google.api_core.retry.Retry``) used to retry requests. If None is specified, requests will not be retried. :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. :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=Cluster.from_json(json.dumps(cluster))elifnotisinstance(cluster,Cluster):raiseAirflowException("cluster is not instance of Cluster proto or python dict")self._append_label(cluster,'airflow-version','v'+version.version)# type: ignoreself.log.info("Creating (project_id=%s, location=%s, cluster_name=%s)",project_id,self.location,cluster.name,# type: ignore)try:resource=self.get_cluster_manager_client().create_cluster(parent=f'projects/{project_id}/locations/{self.location}',cluster=cluster,# type: ignoreretry=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)# type: ignore
@GoogleBaseHook.fallback_to_default_project_id
[docs]defget_cluster(self,name:str,project_id:str=PROVIDE_PROJECT_ID,retry:Union[Retry,_MethodDefault]=DEFAULT,timeout:Optional[float]=None,)->Cluster:""" Gets details of specified cluster :param name: The name of the cluster to retrieve :param project_id: Google Cloud project ID :param retry: A retry object used to retry requests. If None is specified, requests will not be retried. :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. :return: google.cloud.container_v1.types.Cluster """self.log.info("Fetching cluster (project_id=%s, location=%s, cluster_name=%s)",project_idorself.project_id,self.location,name,)return(self.get_cluster_manager_client().get_cluster(name=f'projects/{project_id}/locations/{self.location}/clusters/{name}',retry=retry,timeout=timeout,