As a convention-oriented deployment tool, Octopus can perform a number of actions automatically, such as configuring common types of applications and deploying them to popular hosting environments. For these situations, we have built everything you need into Octopus. Sometimes, however, you need to do more than the built-in conventions support, and that’s where custom scripts come in.
Supported script types
Octopus supports the following scripting environments:
- PowerShell scripts (.ps1)
- Bash scripts (.sh)
- Python scripts (.py)
- C# scripts (.csx) using ScriptCS
- F# scripts (.fsx)
Octopus can run these scripts on almost any operating system as long as the script runtime is installed and configured correctly.
What you can do with custom scripts
If an activity can be scripted, Octopus can run that script as a standalone activity or as part of a larger orchestration.
In the context of Octopus, your custom scripts get the following extra benefits:
- Your scripts can use variables managed by Octopus, including secrets, complex variable expressions, and filters. Learn about using variables in scripts.
- Your scripts can be executed across your entire fleet of servers, or a selection of servers, in a controlled fashion. Learn about deployment targets and workers.
- Your scripts can use the contents of a package. Learn about using files from packages in scripts.
- Your script can log special messages to control the format or report progress. Learn about logging messages in scripts.
- Your scripts can set output variables making these values available to other steps in your process. Learn about output variables.
- Your scripts can collect files and store them in Octopus. Learn about publishing artifacts.
- Your scripts can be pre-authenticated and bootstrapped into a cloud provider. Learn about AWS CLI scripts and Azure CLI scripts.
- Your scripts can be pre-authenticated and bootstrapped into an external service or server cluster. Learn about Kubernetes deployments and Service Fabric deployments.
- You can define reusable functions for your scripts to use. Learn about script modules.
How to use custom scripts
Octopus supports the following ways to use custom scripts:
- You can define a step in a process to run a script. Learn about the run a script step.
- You can run custom scripts when Octopus deploys a package. Learn about the deploy a package step and the different stages where your script can run.
- You can build reusable step templates containing your own scripts which can be used across multiple projects. Learn about step templates.
- You can run ad hoc scripts for administrative tasks. Learn about the script console.
- You can run custom scripts as part of a health check. Learn about machine policies.
Where to store your scripts
Octopus can execute scripts from a variety of locations, all with different benefits:
- You can author and store your scripts directly in Octopus. Learn about the run a script step and deploy a package step.
- You can author your scripts and publish them as step templates for other projects to use. Learn about step templates.
- You can develop your scripts and store them in a source control repository, like git, and Octopus can execute these scripts from within a package. Learn about deployment process as code and running scripts in packages.
- You can develop your scripts and store them in GitHub, then publish them as a release, which can be consumed by Octopus. Learn about using the GitHub feed.
- And finally you can also store your scripts in git, and source them directly from the git repository. Learn about run a script step
How your scripts are executed by Octopus
The precise details depend on the context within which your script is running, however, Octopus follows this general process:
- Octopus transfers the script to the execution environment along with the variables, packages, script modules, and anything else required to run the script. This is done via the Tentacle agent or SSH session into a temporary work directory.
- The Tentacle agent or SSH session invokes the open-source Calamari project to bootstrap your script and provide access to variables and helper functions. You can see how your scripts are bootstrapped in the Calamari source code.
- Calamari invokes your script, streaming log messages back to the Octopus Server.
- Any artifacts published by your scripts are transferred back to the Octopus Server.
- The temporary work directory is cleaned up.
Working directories
When Calamari executes your scripts, it does so within the context of a working directory. The working directory is a temporary location stored under the home folder you configure when setting up a deployment target or worker.
If you’re executing a script contained within a package, the package contents will be uncompressed and copied to this directory, but the working directory is the directory containing the script within it. After the script has finished executing, the working directory will be cleaned up. Learn about copying the contents of the working directory.
Security and permissions
When scripts are executed, it is in the context of the account that the Tentacle agent or SSH session is running as. Learn about running Tentacle as a different user account.
On Windows, the Tentacle agent runs as Local System by default, which has extensive local privileges, but usually cannot access file shares, remote SQL databases, or other external resources. If you need wider permissions, you’ll need to configure Tentacle to run under a custom user account.
Script integrity
Octopus does not provide support for script integrity. While this may sound alarming, there are very good reasons for this approach.
For example, when Calamari invokes PowerShell.exe, it uses the Unrestricted
execution policy for the session. You can see how PowerShell scripts are executed in more detail by looking at the open-source Calamari project.
Learn about script integrity.
Developing and testing scripts
We recommend the following approaches for developing and testing your scripts, in order of preference:
- Build your script to use script arguments as inputs so it can be invoked with equal fidelity from Octopus or directly in your development environment. You can test your scripts by invoking them directly in a development environment with a very fast feedback cycle. Learn about passing parameters to scripts. The only difference in this approach may be the user context the script runs in.
- Build your script as a reusable step template and test it using the
Run Now
feature. Learn about step templates. The only difference to this approach is the absence of deployment-specific variables provided by Octopus when actually running a deployment. - Put your script in a test process and run that process in a test environment.
- Put your script in a real process and run that process in a test environment.
Debugging scripts
There may be times where your script does not work as expected. In these cases, there are some ways you can debug your scripts:
- If you are using PowerShell, Octopus has built-in support for PowerShell debugging. Learn about debugging PowerShell scripts on remote machines using Octopus.
- For all scripting languages, you can tell Octopus to preserve the script and its entire working directory so you can run it interactively. Learn about copying the working directory.
Scripts that block deployments
Sometimes a script launches a service or application that runs continuously. In this case the script does not complete until the application is terminated. When the script is run in an Octopus process, the Octopus task will continue executing until the script exits. In most cases this is undesirable. In order to avoid this behavior the service or application should be launched in a separate process or session, allowing the rest of the process to continue executing. For example:
PowerShell
Start-Process MyService
Bash
screen -d -m -S "MyService" MyService
Scripts that restart the target operating system
Restarting the target operating system is not currently supported as part of running a script via Octopus. You can restart the operating system from your script, but this will cause the process to fail because it cannot survive a restart. Please reach out to our support team if this is a requirement in your situation.
Help us continuously improve
Please let us know if you have any feedback about this page.
Page updated on Wednesday, November 1, 2023