feat: add CRE workflow deploy changeset and operation#1
Draft
feat: add CRE workflow deploy changeset and operation#1
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds 1 operation and 1 changeset to deploy a CRE workflow. These serve as examples for basic workflow deployment using the CRE CLI. Operation can be composed to create more complex changesets or sequences. The operation will:
project.yamllocationcontext.yamlfile with the provided workflow registries. (It's possible we can drop this when we have the new version of the CLI with api key support, for now we are leaving it as it does not affect the deployment process)CLIRunnerprovided by CLDF.AI Summary
This pull request introduces a new CRE workflow deploy changeset and operation, enabling automated deployment of CRE workflows via the CLI. It includes robust input validation, integration with the deployment framework, and comprehensive unit tests for both the changeset and operation. The documentation is also updated to describe the new package and its structure.
CRE Workflow Deploy Feature
CREWorkflowDeployChangesetincre/changesets/workflow_deploy.goto resolve workflow artifacts, validate inputs, and trigger the CRE CLI workflow deploy operation. This includes precondition checks for environment and input validity.CREWorkflowDeployOpincre/operations/workflow_deploy.go, which prepares workflow artifacts, builds required config files, and invokes the CRE CLI with appropriate arguments and environment. Handles result reporting and error propagation.Testing
cre/changesets/workflow_deploy_test.go, covering various precondition scenarios and input validation.cre/operations/workflow_deploy_test.go, including CLI invocation, argument construction, error handling, and output propagation.Documentation
README.mdto document the newcrepackage, its purpose, main changeset, operation, and package structure.