-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaction.yml
48 lines (46 loc) · 1.49 KB
/
action.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
name: "Testkube Action"
author: "Kubeshop"
description: "Interact with your Testkube cluster."
runs:
using: "node16"
main: "dist/index.js"
branding:
icon: "check-circle"
color: "green"
inputs:
# Installation
channel:
description: "Channel to use for the Testkube CLI - `stable` or `beta`."
required: false
default: stable
version:
description: "Specific Testkube CLI version to install. Defaults to latest."
required: false
# kubectl configuration
namespace:
description: "Kubernetes namespace where Testkube is located"
required: false
default: testkube
# Cloud configuration
url:
description: "Testkube Cloud/Enterprise root domain, defaults to the Testkube Cloud (testkube.io)."
default: "testkube.io"
required: false
urlApiSubdomain:
description: "API URL subdomain before the Testkube Cloud/Enterprise root domain, if custom setup."
required: false
urlUiSubdomain:
description: "Dashboard URL subdomain before the Testkube Cloud/Enterprise root domain, if custom setup."
required: false
urlLogsSubdomain:
description: "Logs Server URL subdomain before the Testkube Cloud/Enterprise root domain, if custom setup."
required: false
organization:
description: "Organization ID in the Testkube Cloud/Enterprise."
required: false
environment:
description: "Environment ID in the Testkube Cloud/Enterprise."
required: false
token:
description: "Auth token for the Testkube instance."
required: false