forked from helm/kind-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
36 lines (36 loc) · 992 Bytes
/
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
name: "Kind Cluster"
description: "Create a kind (Kubernetes IN Docker) cluster"
author: "The Helm authors"
branding:
color: blue
icon: box
inputs:
version:
description: "The kind version to use (default: v0.12.0)"
required: false
default: "v0.12.0"
config:
description: "The path to the kind config file"
required: false
node_image:
description: "The Docker image for the cluster nodes"
required: false
cluster_name:
description: "The name of the cluster to create (default: chart-testing)"
required: false
default: "chart-testing"
wait:
description: "The duration to wait for the control plane to become ready (default: 60s)"
required: false
default: "60s"
log_level:
description: "The log level for kind"
required: false
kubectl_version:
description: "The kubectl version to use (default: v1.21.10)"
required: false
default: "v1.21.10"
runs:
using: "node12"
main: "main.js"
post: "cleanup.js"