Skip to content

clarive/cla-octopus-plugin

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Octopus Plugin

Octopus Plugin

The Octopus plugin will allow you to perform deployments with Octopus.

Requirements

There are no requirements outlined in Clarive in order to work with this plugin.

Installation

To install the plugin, place the cla-octopus-plugin folder inside the $CLARIVE_BASE/plugins directory in a Clarive instance.

Octopus Deployment:

The different available parameters are:

  • API Key (variable name: api_key) - API key for interaction with Octopus.
  • Octopus URL (url) - URL to Octopus server.
  • Octopus Project Name (project) - Project Name to deploy to in Octopus.
  • Octopus Environment Name (environment) - Environment Name to deploy to in Octopus.
  • Create Release in Octopus (release) - Check to create a new release.
  • Release ID (id_release) - When Create Release is not selected, indicate the Octopus Release ID to deploy to.
  • Release version (version) - Select the version for the new release.

How to use

In Clarive EE

Once the plugin is placed in its folder, you can find this service in the palette in the section of generic service and can be used like any other palette op.

Op Name: Octopus Deployment

Example:

    API key: API-392839302
    Octopus URL: http://octopus.machine
    Project Name: MyProject
    Environment Name: MyEnvironment
    Create Release in Octopus: 0
    Release version: 1.0.3-dev

In Clarive SE

Rulebook

If you want to use the plugin through the Rulebook, in any do block, use this ops as examples to configure the different parameters:

rule: Octopus demo
do:
   - octopus_deploy:
       api_key: 'API-392839302'         # Required
       url: 'http://octopus.machine'    # Required
       project: "MyProject"             # Required
       environment: "MyEnvironment"     # Required
       release: "0"                     # Required
       version: "1.0.3-dev"
rule: Yet another Octopus demo
do:
   - octopus_deploy:
       api_key: 'API-392839302'         # Required
       url: 'http://octopus.machine'    # Required
       project: "MyProject"             # Required
       environment: "MyEnvironment"     # Required
       release: "1"                     # Required
       id_release: "102391"
Outputs
Success

The service will return the output from the Octopus API.

Possible configuration failures

Deploy failed

The service will return the output from the Octopus API.

Variable required

Error in rulebook (compile): Required argument(s) missing for op "octopus_deploy": "url"

Make sure you have all required variables defined.

Not allowed variable

Error in rulebook (compile): Argument `Command` not available for op "octopus_deploy"

Make sure you are using the correct paramaters (make sure you are writing the variable names correctly).

More questions?

Feel free to join Clarive Community to resolve any of your doubts.

About

Plugin for Octopus

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published