Project

Profile

Help

Story #4082

closed

As a plugin writer I can use plugin_template to bootstrap or update a plugin

Added by bmbouter over 5 years ago. Updated over 4 years ago.

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

100%

Estimated time:
(Total: 0:00 h)
Platform Release:
Groomed:
No
Sprint Candidate:
No
Tags:
Plugin Template
Sprint:
Quarter:

Description

The plugin template has been very useful for creating new plugins. The downside is that since it is used only to create new plugins, it is not used frequently. The recent addition of generate_travis_config demonstrates that the template can also be useful for updating plugins, which will both increase usage and save plugin writers time.

As we are expanding the usage, the following issues are arising:

Problem 1: args instead of config.
One pain point with generate_travis_config is that all the variables are set at runtime, so plugin writers need to remember the exact command used to generate their travis if they want to run it again to update those files. This concept will be a pain point for anything that the template is capable of updating.

Problem 2: Multiple template types
Some files are templated with string processing, some are templated with jinja

Problem 3: Difficult to update plugins.
Currently the template can only update travis files because bootstrap will clobber their existing work.

HIgh Level Plan

The changes will all be implemented in sub-tasks to this epic issue.

all jinja
Replace all string formatting with jinja templates.

committed config values:
A yml file (checked into git) will be used to store human readable values, allowing repeated, idempotent usage.

New CLI:

`plugin-template init [path/to/plugin/parentdir/, defaults to ../]`:

  • Wizard asks user for any config values necessary to bootstrap the template.
  • Create a root directory for new plugin
  • creates a user-editable template-config.yml file in the plugin root dir that stores all the config values (all values documented in the file comments)

`plugin-template bootstrap <path-to-plugin-rootdir>`:

  • Reads the template file at <path>/template-config.yml
  • render files conditionally based on yml. (ie, if deploy-pypi-client is set to false, don't template that file)

`plugin-template update <path-to-plugin-rootdir> [--file-path <path>]

  • Reads the template file at <path>/template.yml
  • similar to bootstrap command, but act only on "managed files" which are files which should not be updated manually by the plugin author, ex .travis/script.sh
  • if --file-path <path> is passed, render that file only. this can be used to deliberately clobber files that need updating, but are not "managed files", giving the plugin author granular control.

Note: All changes should be made against the filesystem only, and should not invoke git. The plugin writer can then use `git diff` to make sure that the changes are correct for their plugin, and gives them the option to not stage certain changes.


Sub-issues 1 (0 open1 closed)

Task #4926: switch template entirely to jinjaCLOSED - CURRENTRELEASEamacdona@redhat.com

Actions

Related issues

Related to Pulp - Task #4927: Generate template config fileCLOSED - COMPLETE

Actions
Related to Pulp - Task #4928: Implement template `update`CLOSED - COMPLETE

Actions

Also available in: Atom PDF