forked from engineerd/setup-kind
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
41 lines (41 loc) · 1.36 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
name: "KinD (Kubernetes in Docker) Action"
description: "Easily run a Kubernetes cluster in your GitHub Action"
author: "Engineerd"
inputs:
version:
description: "Version of Kind to use (default v0.11.1)"
default: "v0.11.1"
required: true
config:
description: "Path (relative to the root of the repository) to a kind config file"
image:
description: "Node Docker image to use for booting the cluster"
name:
description: "Cluster name (default kind)"
default: "kind"
required: true
wait:
description: "Wait for control plane node to be ready (default 300s)"
default: "300s"
kubeconfig:
description: "Sets kubeconfig path instead of $KUBECONFIG or $HOME/.kube/config"
skipClusterCreation:
description: "If true, the action will not create a cluster, just acquire the tools"
default: "false"
skipClusterDeletion:
description: "If true, the action will not delete the cluster"
default: "false"
skipClusterLogsExport:
description: "If true, the action will not export the cluster logs"
default: "false"
verbosity:
description: "Defines log verbosity with a numeric value, (info = 0, debug = 3, trace = 2147483647)"
default: "0"
quiet:
description: "Silence all stderr output"
default: "false"
runs:
using: "node16"
main: "dist/main/index.js"
post: "dist/post/index.js"
post-if: success()