sked package deploy
Deploy a package to a Skedulo tenant, either from a local file or a registered package.
Overview
Deploy a package to a Skedulo tenant, either from a local file or a registered package.
$ sked package deploy <command>
Commands
| Command | Description |
|---|---|
| local | Deploy a local package to a Skedulo tenant |
| registered | Deploy a registered package to a Skedulo tenant |
local
Description
Deploy a local package to a Skedulo tenant.
Usage
$ sked package deploy local -p <value> [--json] [-a <value>] [-v] [-d] [-i <value>]
Examples
$ sked package deploy local -p .
$ sked package deploy local --package ./MyProject/package.zip
$ sked package deploy local --package ./MyProject/package.zip --verbose --deploymentType dry-run --pollingInterval 90
$ sked package deploy local -p ./MyProject/package.zip -v
Flags
| Flag | Description | Required |
|---|---|---|
| -p, --package= |
The path to the package zip file (e.g ./MyProject/package.zip) | Yes |
| -a, --alias= |
The alias of the Skedulo tenant you wish to deploy the package to | No |
| -d, --dryRun | The deployment type to perform; dry run, or full deployment | No |
| -i, --pollingInterval= |
[default: 10] The polling interval for this deployment | No |
| -v, --verbose | Enable verbose logging | No |
Global flags
| Flag | Description | Required |
|---|---|---|
| --json | Format output as json. | No |
registered
Description
Deploy a registered package to a Skedulo tenant.
Usage
$ sked package deploy registered -p <value> [--json] [-v <value>] [-a <value>] [--verbose] [-i <value>]
Examples
$ sked package deploy registered --packageName customer/package-name
$ sked package deploy registered --packageName customer/package-name --packageVersion 0.1.0
$ sked package deploy registered --packageName customer/package-name --packageVersion 0.1.0 --verbose --pollingInterval 90
Flags
| Flag | Description | Required |
|---|---|---|
| -p, --packageName= |
The name of the registered package you want to install | Yes |
| -a, --alias= |
The alias of the Skedulo tenant you wish to deploy the package to | No |
| -i, --pollingInterval= |
[default: 10] The polling interval for this deployment | No |
| -v, --packageVersion= |
The version of the package you want to install. Defaults to the latest version if none provided | No |
| --verbose | Enable verbose logging | No |
Global flags
| Flag | Description | Required |
|---|---|---|
| --json | Format output as json. | No |
Feedback
Was this page helpful?