Skip to main content

Tools initiate a new project in git lab, based on a existing definition

Project description

CndScaffold

Why use CndScaffold

CndScaffold is a python lib, designed to help management of GitOps process. With CndScaffold, you need data and template definition and then CndScaffold do the magic and generate content

New in 2.0.0

CndScaffold are now compatible with jinja2 engine (https://realpython.com/primer-on-jinja-templating/)

It allow use more complexe structure in file

Requirements

This lib use

  • CndIo : This lib allow you to easilly push conten on gitlab/azuredevops or localfile
  • CndPrint : This lib to manage display of alert message

How to use it

source = {
	'project_id': 'gitlab-source-project-id',
	'definition': 'org-demo1_product1',
	'branch': 'main',
}
target = {
	'project_id': 'gitlab-target-project-id',
	'folder': 'home',
	'branch': 'main',
}

data_to_replace = {
	'env': ['alpha', 'gamma'],
	'client': [{'name': 'A', 'token': 'B'}, {'name': 'A', 'token': 'B'}],
	'app': 'beta',
	'abc': 'def',
	'yaml': {
		'abc': 'def',
		'ghi': ['jkl', 'lmo']
	}
}

level = "Trace"
_print = cndprint.CndPrint(level=level, silent_mode=True)
provider = cnd_io.CndProviderLocalfile(creds={}, print=_print)
cnd_io = cnd_io.CndIO(provider, print=_print)

self.cnd_scaffold = cnd_scaffold.CndScaffold(source, target, data_to_replace, cnd_io, print=_print)
self.cnd_scaffold.build()

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

cnd_scaffold-2.1.0-py3-none-any.whl (4.2 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page