You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by GitBox <gi...@apache.org> on 2019/09/02 17:55:45 UTC

[GitHub] [airflow] mik-laj commented on a change in pull request #5987: [AIRFLOW-5388] Add airflow version label to newly created buckets

mik-laj commented on a change in pull request #5987: [AIRFLOW-5388] Add airflow version label to newly created buckets
URL: https://github.com/apache/airflow/pull/5987#discussion_r320027413
 
 

 ##########
 File path: airflow/contrib/hooks/gcs_hook.py
 ##########
 @@ -439,6 +440,10 @@ def create_bucket(self,
         self.log.info('Creating Bucket: %s; Location: %s; Storage Class: %s',
                       bucket_name, location, storage_class)
 
+        # Add airflow-version label to the bucket
+        labels = {} or labels
+        labels['airflow-version'] = 'v' + version.replace('.', '-').replace('+', '-')
 
 Review comment:
   This change results from the operator's retrofitting to comply with the integration guide.
   
   > Tracking GCP resources
   > To tag and track GCP resources spawned from Airflow, we have been adding airflow specific label(s) to GCP API service calls whenever possible and applicable. For example, we add “airflow-version” label to the dataproc cluster created. We expect new GCP service operators will also add Airflow top-level label “airflow-version” in addition to any service specific labels. 

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services