Skip to content

v0.9.0-beta1

Compare
Choose a tag to compare
@jaredoconnell jaredoconnell released this 01 Nov 23:07
· 77 commits to main since this release
9054fdf

This PR has breaking changes:

Changes

  • Added deployment types. This means that you can seamlessly have multiple plugins of different types within the same workflow. For example, both Python and Image steps.
  • Updated workflow format version to v0.2.0.
    • the format
      plugin: <image tag here>
      has been changed to:
      plugin:
        src: <image tag here>
        deployment_type: image
      
    • The same format applies to python-deployments (not to be confused with containerized Python plugins).
      plugin:
        src: <python module here>
        deployment_type: python
      
  • The config for the deployer has been updated to have the prior config nested within its deployment type.
    • Example:
      deployers:
        python:
          deployer_name: python
          modulePullPolicy: IfNotPresent
          pythonPath: <path to python?
          workdir: <a path goes here>
        image:
          deployer_name: docker
      

Contributions

Full Changelog: v0.8.0...v0.9.0-beta1