From 0047d5022d5dca09e1dee260fffa59b2d7f0531a Mon Sep 17 00:00:00 2001 From: Sarah Gibson Date: Fri, 17 Jun 2022 10:26:54 +0100 Subject: [PATCH] disable bumping of pangeo images as per: https://github.com/2i2c-org/infrastructure/issues/1240#issuecomment-1151212986 --- .github/workflows/bump-image-tags.yaml | 30 ++++++++++++++------------ 1 file changed, 16 insertions(+), 14 deletions(-) diff --git a/.github/workflows/bump-image-tags.yaml b/.github/workflows/bump-image-tags.yaml index d403d472eb..cadecad962 100644 --- a/.github/workflows/bump-image-tags.yaml +++ b/.github/workflows/bump-image-tags.yaml @@ -18,20 +18,22 @@ jobs: include: # For each new config_path to monitor, add a new item in this matrix. # The Action can read multiple paths to images, but not multiple config files. - - name: "pangeo-hubs common singleuser image" - config_path: "config/clusters/pangeo-hubs/common.values.yaml" - # The regexpr attribute will ensure we only bump tags in the form YYYY.MM.DD - images_info: '[{"values_path": ".basehub.jupyterhub.singleuser.image", "regexpr": "[0-9]{4}.[0-9]{2}.[0-9]{2}"}]' - - name: "m2lines common singleuser/PyTorch/Tensorflow" - config_path: "config/clusters/m2lines/common.values.yaml" - # The regexpr attribute will ensure we only bump tags in the form YYYY.MM.DD - # If the ordering of profileList changes, update the index in this expression - images_info: '[{"values_path": ".basehub.jupyterhub.singleuser.image", "regexpr": "[0-9]{4}.[0-9]{2}.[0-9]{2}"}, {"values_path": ".basehub.jupyterhub.singleuser.profileList[4].kubespawner_override.image", "regexpr": "[0-9]{4}.[0-9]{2}.[0-9]{2}"}, {"values_path": ".basehub.jupyterhub.singleuser.profileList[5].kubespawner_override.image", "regexpr": "[0-9]{4}.[0-9]{2}.[0-9]{2}"}]' - - name: "leap common singleuser/pangeo-ml-notebook" - config_path: "config/clusters/leap/common.values.yaml" - # The regexpr attribute will ensure we only bump tags in the form YYYY.MM.DD - # If the ordering of profileList changes, update the index in this expression - images_info: '[{"values_path": ".basehub.jupyterhub.singleuser.image", "regexpr": "[0-9]{4}.[0-9]{2}.[0-9]{2}"}, {"values_path": ".basehub.jupyterhub.singleuser.profileList[4].kubespawner_override.image", "regexpr": "[0-9]{4}.[0-9]{2}.[0-9]{2}"}]' + + # Turn of bumping of Pangeo images as per https://github.com/2i2c-org/infrastructure/issues/1240#issuecomment-1151212986 + # - name: "pangeo-hubs common singleuser image" + # config_path: "config/clusters/pangeo-hubs/common.values.yaml" + # # The regexpr attribute will ensure we only bump tags in the form YYYY.MM.DD + # images_info: '[{"values_path": ".basehub.jupyterhub.singleuser.image", "regexpr": "[0-9]{4}.[0-9]{2}.[0-9]{2}"}]' + # - name: "m2lines common singleuser/PyTorch/Tensorflow" + # config_path: "config/clusters/m2lines/common.values.yaml" + # # The regexpr attribute will ensure we only bump tags in the form YYYY.MM.DD + # # If the ordering of profileList changes, update the index in this expression + # images_info: '[{"values_path": ".basehub.jupyterhub.singleuser.image", "regexpr": "[0-9]{4}.[0-9]{2}.[0-9]{2}"}, {"values_path": ".basehub.jupyterhub.singleuser.profileList[4].kubespawner_override.image", "regexpr": "[0-9]{4}.[0-9]{2}.[0-9]{2}"}, {"values_path": ".basehub.jupyterhub.singleuser.profileList[5].kubespawner_override.image", "regexpr": "[0-9]{4}.[0-9]{2}.[0-9]{2}"}]' + # - name: "leap common singleuser/pangeo-ml-notebook" + # config_path: "config/clusters/leap/common.values.yaml" + # # The regexpr attribute will ensure we only bump tags in the form YYYY.MM.DD + # # If the ordering of profileList changes, update the index in this expression + # images_info: '[{"values_path": ".basehub.jupyterhub.singleuser.image", "regexpr": "[0-9]{4}.[0-9]{2}.[0-9]{2}"}, {"values_path": ".basehub.jupyterhub.singleuser.profileList[4].kubespawner_override.image", "regexpr": "[0-9]{4}.[0-9]{2}.[0-9]{2}"}]' steps: # We want tests to be run on the Pull Request that gets opened by the next step,