-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
157 additions
and
157 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
name: 'Archive Channel' | ||
description: 'Archive a channel' | ||
name: "Archive Channel" | ||
description: "Archive a channel" | ||
inputs: | ||
app-slug: | ||
description: 'App Slug.' | ||
description: "App Slug." | ||
required: true | ||
default: '' | ||
default: "" | ||
api-token: | ||
description: 'API Token.' | ||
description: "API Token." | ||
required: true | ||
default: '' | ||
default: "" | ||
channel-slug: | ||
description: 'The slug of the channel to archive.' | ||
description: "The slug of the channel to archive." | ||
required: true | ||
runs: | ||
using: 'node16' | ||
main: 'dist/index.js' | ||
using: "node20" | ||
main: "dist/index.js" |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
name: 'Archive Customer' | ||
description: 'Archive a customer' | ||
name: "Archive Customer" | ||
description: "Archive a customer" | ||
inputs: | ||
api-token: | ||
description: 'API Token.' | ||
description: "API Token." | ||
required: true | ||
default: '' | ||
default: "" | ||
customer-id: | ||
description: 'The id of the customer.' | ||
description: "The id of the customer." | ||
required: true | ||
runs: | ||
using: 'node16' | ||
main: 'dist/index.js' | ||
using: "node20" | ||
main: "dist/index.js" |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,31 @@ | ||
name: 'Replicated create release' | ||
description: 'Create a Replicated release on a channel' | ||
name: "Replicated create release" | ||
description: "Create a Replicated release on a channel" | ||
inputs: | ||
app-slug: | ||
description: 'App Slug.' | ||
description: "App Slug." | ||
required: true | ||
default: '' | ||
default: "" | ||
api-token: | ||
description: 'API Token.' | ||
description: "API Token." | ||
required: true | ||
default: '' | ||
default: "" | ||
chart: | ||
description: 'Path to the helm chart (One of `chart` or `yaml-dir` is required).' | ||
description: "Path to the helm chart (One of `chart` or `yaml-dir` is required)." | ||
required: false | ||
yaml-dir: | ||
description: 'The directory containing multiple yamls for a Replicated release (One of `chart` or `yaml-dir` is required).' | ||
description: "The directory containing multiple yamls for a Replicated release (One of `chart` or `yaml-dir` is required)." | ||
required: false | ||
promote-channel: | ||
description: 'Channel name or id to promote this release to.' | ||
description: "Channel name or id to promote this release to." | ||
required: false | ||
version: | ||
description: 'Release version' | ||
description: "Release version" | ||
required: false | ||
outputs: | ||
channel-slug: # slug of the channel | ||
description: 'Contains the channel slug.' | ||
description: "Contains the channel slug." | ||
release-sequence: # sequence number of the release | ||
description: 'Sequence number of the release.' | ||
description: "Sequence number of the release." | ||
runs: | ||
using: 'node16' | ||
main: 'dist/index.js' | ||
using: "node20" | ||
main: "dist/index.js" |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
name: 'Get Customer Instances' | ||
description: 'Generate k8s matrix for testing based on usage and availability' | ||
name: "Get Customer Instances" | ||
description: "Generate k8s matrix for testing based on usage and availability" | ||
inputs: | ||
app-slug: | ||
description: 'App Slug.' | ||
description: "App Slug." | ||
required: true | ||
default: '' | ||
default: "" | ||
api-token: | ||
description: 'API Token.' | ||
description: "API Token." | ||
required: true | ||
default: '' | ||
default: "" | ||
outputs: | ||
matrix: # matrix to test with | ||
description: 'Matrix to test with (json).' | ||
description: "Matrix to test with (json)." | ||
runs: | ||
using: 'node16' | ||
main: 'dist/index.js' | ||
using: "node20" | ||
main: "dist/index.js" |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,42 +1,42 @@ | ||
name: 'Install a Helm chart to a cluster' | ||
description: 'Install a Helm chart to a cluster' | ||
name: "Install a Helm chart to a cluster" | ||
description: "Install a Helm chart to a cluster" | ||
inputs: | ||
helm-path: | ||
description: 'The path to the helm binary to use' | ||
description: "The path to the helm binary to use" | ||
required: true | ||
kubeconfig: | ||
description: 'A valid kubeconfig to connect to' | ||
description: "A valid kubeconfig to connect to" | ||
required: true | ||
registry-username: | ||
description: 'The registry username to log in with' | ||
description: "The registry username to log in with" | ||
required: true | ||
registry-password: | ||
description: 'The registry password to use' | ||
description: "The registry password to use" | ||
required: true | ||
repo-name: | ||
description: 'The repo name to use (when not installing from local or oci)' | ||
description: "The repo name to use (when not installing from local or oci)" | ||
required: false | ||
repo-url: | ||
description: 'The repo url to use (when not installing from local or oci)' | ||
description: "The repo url to use (when not installing from local or oci)" | ||
required: false | ||
chart: | ||
description: 'The chart to use' | ||
description: "The chart to use" | ||
required: true | ||
version: | ||
description: 'The version of the chart to install' | ||
description: "The version of the chart to install" | ||
required: false | ||
name: | ||
description: 'The name of release to install' | ||
description: "The name of release to install" | ||
required: true | ||
namespace: | ||
description: 'The namespace to install the application to' | ||
description: "The namespace to install the application to" | ||
required: true | ||
values: | ||
description: 'A values.yaml file to use' | ||
description: "A values.yaml file to use" | ||
run-preflights: | ||
description: 'Run preflight checks (true/false)' | ||
description: "Run preflight checks (true/false)" | ||
required: false | ||
default: 'false' | ||
default: "false" | ||
runs: | ||
using: 'node16' | ||
main: 'dist/index.js' | ||
using: "node20" | ||
main: "dist/index.js" |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,35 @@ | ||
name: 'KOTS Install' | ||
description: 'Install a application using KOTS' | ||
name: "KOTS Install" | ||
description: "Install a application using KOTS" | ||
inputs: | ||
kubeconfig: | ||
description: 'A valid kubeconfig to connect to' | ||
description: "A valid kubeconfig to connect to" | ||
required: true | ||
kots-version: | ||
description: 'The version of KOTS to use' | ||
description: "The version of KOTS to use" | ||
required: true | ||
default: "latest" | ||
app-slug: | ||
description: 'App Slug.' | ||
description: "App Slug." | ||
required: true | ||
app-version-label: | ||
description: 'The application version label to install. If not specified, the latest version is installed.' | ||
description: "The application version label to install. If not specified, the latest version is installed." | ||
required: false | ||
shared-password: | ||
description: 'Shared password to use when deploying the admin console. If not specified, a random password is generated.' | ||
description: "Shared password to use when deploying the admin console. If not specified, a random password is generated." | ||
required: false | ||
license-file: | ||
description: 'A license.yaml to use. This can be a path to a file or the contents of the file.' | ||
description: "A license.yaml to use. This can be a path to a file or the contents of the file." | ||
required: true | ||
config-values: | ||
description: 'The config values to use. This can be a path to a file or the contents of the file.' | ||
description: "The config values to use. This can be a path to a file or the contents of the file." | ||
required: false | ||
namespace: | ||
description: 'The namespace to install the application to' | ||
description: "The namespace to install the application to" | ||
default: "default" | ||
required: false | ||
wait-duration: | ||
description: 'Timeout to be used while waiting for individual components to be ready. must be in Go duration format (eg: 10s, 2m) (default "2m")' | ||
required: false | ||
runs: | ||
using: 'node16' | ||
main: 'dist/index.js' | ||
using: "node20" | ||
main: "dist/index.js" |
Oops, something went wrong.