Project

Profile

Help

Story #6338

closed

As a user "whitelist-tags option supports wildcard characters

Added by ipanova@redhat.com about 4 years ago. Updated almost 4 years ago.

Status:
CLOSED - CURRENTRELEASE
Priority:
Normal
Assignee:
Sprint/Milestone:
Start date:
Due date:
% Done:

100%

Estimated time:
Platform Release:
Groomed:
Yes
Sprint Candidate:
Yes
Tags:
Backlog
Sprint:
Sprint 69
Quarter:

Description

Add the ability to limit tag using a regexp

For example:

upstream taglist is

[
'openshift-4',
'openshift-3.11'
'openshift-3',
'openshift-3.10'
'latest'
'foo'
]`

When specifying whitelist-tags=[openshift-3.*, latest, bla-bla] it will mirror down only:

[
'openshift-3.11'
'openshift-3',
'openshift-3.10'
'latest'
]

solution

In [61]: upstream_tags = [ 
    ...: 'openshift-4', 
    ...: 'openshift-3.11', 
    ...: 'openshift-3', 
    ...: 'openshift-3.10', 
    ...: 'latest', 
    ...: 'foo' 
    ...: ]                                                                                                                                                                                                         



In [63]: whitelisttags = ['openshift-3.*', 'latest', 'bla-bla', 'openshift-3.11']                                                                                                                                  

In [64]: import re 
    ...: tags_to_mirror = [] 
    ...: for i in whitelisttags: 
    ...:     rex = re.compile(i) 
    ...:     for tag in upstream_tags: 
    ...:         tags_to_mirror.extend(rex.findall(tag)) 
    ...:          
                                                                                                                                                                                                 

In [65]: tags_to_mirror                                                                                                                                                                                            
Out[65]: ['openshift-3.11', 'openshift-3', 'openshift-3.10', 'latest', 'openshift-3.11']

In [66]: set(tags_to_mirror)                                                                                                                                                                                       
Out[66]: {'latest', 'openshift-3', 'openshift-3.10', 'openshift-3.11'}
Actions #1

Updated by ipanova@redhat.com about 4 years ago

  • Description updated (diff)
Actions #2

Updated by ipanova@redhat.com about 4 years ago

  • Project changed from RPM Support to Container Support
  • Description updated (diff)
Actions #3

Updated by ipanova@redhat.com about 4 years ago

  • Description updated (diff)
Actions #5

Updated by ipanova@redhat.com about 4 years ago

  • Tags Backlog added
Actions #6

Updated by ipanova@redhat.com about 4 years ago

  • Groomed changed from No to Yes
  • Sprint Candidate changed from No to Yes
  • Sprint set to Sprint 69
Actions #7

Updated by lmjachky about 4 years ago

  • Status changed from NEW to ASSIGNED
  • Assignee set to lmjachky

Added by Lubos Mjachky almost 4 years ago

Revision 081fb538 | View on GitHub

Add support for filtering tags using wildcards

In this commit, there was also added a new test case that verifies syncing with whitelisted tags.

closes #6338

Added by Lubos Mjachky almost 4 years ago

Revision 081fb538 | View on GitHub

Add support for filtering tags using wildcards

In this commit, there was also added a new test case that verifies syncing with whitelisted tags.

closes #6338

Actions #8

Updated by lmjachky almost 4 years ago

  • Status changed from ASSIGNED to POST
Actions #10

Updated by Anonymous almost 4 years ago

  • Status changed from POST to MODIFIED
  • % Done changed from 0 to 100
Actions #11

Updated by ipanova@redhat.com almost 4 years ago

  • Sprint/Milestone set to 1.3.0
Actions #12

Updated by ipanova@redhat.com almost 4 years ago

  • Status changed from MODIFIED to CLOSED - CURRENTRELEASE

Also available in: Atom PDF