-
Notifications
You must be signed in to change notification settings - Fork 273
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(exec): add services to exec modules
This allows users to define services on `exec` modules, like so: ``` kind: Module type: exec name: my-module services: - name: my-exec-service # (Required) Specify the command to deploy your service. deployCommand: [./myDeployScript.sh] # (Optional but recommended) A command to check the deployment # status. Exit code 0 = already deployed. statusCommand: [./myStatusCheckScript.sh] # (Optional but recommended) Command to clean up the service. cleanupCommand: [./myCleanupScript.sh] ``` This provides a useful escape hatch when Garden's module types don't cover your needs.
- Loading branch information
Showing
6 changed files
with
557 additions
and
28 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.