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'}

Also available in: Atom PDF