diff options
author | Brett Holman <bholman.devel@gmail.com> | 2022-01-14 11:09:30 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-14 12:09:30 -0600 |
commit | 73b1bb1f7665216053494717de27d7daf445d751 (patch) | |
tree | 8f230d980bc7fe3b173da0a4a6f0e38cda57537e /tools | |
parent | 0de7acb194dc15650eee1d5332efed82ef162f84 (diff) | |
download | vyos-cloud-init-73b1bb1f7665216053494717de27d7daf445d751.tar.gz vyos-cloud-init-73b1bb1f7665216053494717de27d7daf445d751.zip |
Test Optimization Proposal (SC-736) (#1188)
Reduce template rendering test runtime
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/render-cloudcfg | 76 |
1 files changed, 47 insertions, 29 deletions
diff --git a/tools/render-cloudcfg b/tools/render-cloudcfg index 6642bd58..c14097b5 100755 --- a/tools/render-cloudcfg +++ b/tools/render-cloudcfg @@ -1,47 +1,65 @@ #!/usr/bin/env python3 -import argparse import os import sys - -VARIANTS = ["almalinux", "alpine", "amazon", "arch", "centos", "cloudlinux", "debian", - "eurolinux", "fedora", "freebsd", "miraclelinux", "netbsd", "openbsd", "openEuler", "photon", - "rhel", "suse","rocky", "ubuntu", "unknown", "virtuozzo"] +import argparse -if "avoid-pep8-E402-import-not-top-of-file": +def main(): _tdir = os.path.abspath(os.path.join(os.path.dirname(__file__), "..")) sys.path.insert(0, _tdir) - from cloudinit import templater - from cloudinit import util - from cloudinit.atomic_helper import write_file - + from cloudinit import templater, util # pylint: disable=E0401 -def main(): + VARIANTS = [ + "almalinux", + "alpine", + "amazon", + "arch", + "centos", + "cloudlinux", + "debian", + "eurolinux", + "fedora", + "freebsd", + "miraclelinux", + "netbsd", + "openbsd", + "openEuler", + "photon", + "rhel", + "suse", + "rocky", + "ubuntu", + "unknown", + "virtuozzo", + ] parser = argparse.ArgumentParser() platform = util.system_info() parser.add_argument( - "--variant", default=platform['variant'], action="store", - help="define the variant.", choices=VARIANTS) + "--variant", + default=platform["variant"], + action="store", + help="define the variant.", + choices=VARIANTS, + ) parser.add_argument( - "template", nargs="?", action="store", - default='./config/cloud.cfg.tmpl', - help="Path to the cloud.cfg template") + "template", + nargs="?", + action="store", + default="./config/cloud.cfg.tmpl", + help="Path to the cloud.cfg template", + ) parser.add_argument( - "output", nargs="?", action="store", default="-", - help="Output file. Use '-' to write to stdout") + "output", + nargs="?", + action="store", + default="-", + help="Output file. Use '-' to write to stdout", + ) - args = parser.parse_args() + args = parser.parse_args(sys.argv[1:]) + templater.render_cloudcfg(args.variant, args.template, args.output) - with open(args.template, 'r') as fh: - contents = fh.read() - tpl_params = {'variant': args.variant} - contents = (templater.render_string(contents, tpl_params)).rstrip() + "\n" - util.load_yaml(contents) - if args.output == "-": - sys.stdout.write(contents) - else: - write_file(args.output, contents, omode="w") -if __name__ == '__main__': +if __name__ == "__main__": main() |