2021-03-23 04:43:13 +00:00
|
|
|
|
|
|
|
from pathlib import Path
|
|
|
|
import os
|
|
|
|
import jinja2 as j2
|
|
|
|
|
|
|
|
TEMPLATE_FILE = 'bitbucket-pipelines.yml.j2'
|
2021-03-29 04:29:57 +00:00
|
|
|
REPOS = ['atlassian/confluence', 'atlassian/confluence-server']
|
2021-03-23 04:43:13 +00:00
|
|
|
|
|
|
|
images = {
|
2021-07-14 23:14:53 +00:00
|
|
|
'Confluence': {
|
2021-03-23 04:43:13 +00:00
|
|
|
11: {
|
2022-03-08 06:02:59 +00:00
|
|
|
'start_version': '7.4',
|
2021-03-23 04:43:13 +00:00
|
|
|
'end_version': '8',
|
|
|
|
'default_release': True,
|
2021-09-16 04:11:45 +00:00
|
|
|
'base_image': 'adoptopenjdk/openjdk11',
|
2021-03-23 04:43:13 +00:00
|
|
|
'tag_suffixes': ['adoptopenjdk11', 'jdk11', 'ubuntu', 'ubuntu-18.04-adoptopenjdk11'],
|
|
|
|
'dockerfile': 'Dockerfile',
|
|
|
|
'docker_repos': REPOS,
|
|
|
|
}
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
def main():
|
|
|
|
jenv = j2.Environment(
|
|
|
|
loader=j2.FileSystemLoader('.'),
|
|
|
|
lstrip_blocks=True,
|
|
|
|
trim_blocks=True)
|
|
|
|
template = jenv.get_template(TEMPLATE_FILE)
|
|
|
|
generated_output = template.render(images=images, batches=12)
|
|
|
|
|
|
|
|
print(generated_output)
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
main()
|