-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathaction.yml
41 lines (41 loc) · 1.82 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: "Kubernetes KinD Cluster"
description: "Create a KinD (Kubernetes in Docker) cluster with a container image registry and optional addons (Knative)"
author: "Container Tools developers"
branding:
color: blue
icon: cloud
inputs:
version:
description: "The KinD version to use (default: v0.17.0)"
config:
description: "The path to the KinD config file"
node_image:
description: "The Docker image for the cluster nodes"
cluster_name:
description: "The name of the cluster to create (default: kind)"
wait:
description: "The duration to wait for the control plane to become ready (default: 60s)"
log_level:
description: "The log level for KinD"
registry:
description: "Configures an insecure registry on kind-registry:5000 to be used with KinD (default: true)"
registry_delete:
description: "Enables delete operations on the Image Registry (default is false)"
kubectl_version:
description: "The version of kubectl to use (default: v1.26.1)"
knative_serving:
description: "The version of Knative Serving to install on the Kind cluster (not installed by default - example: v1.0.0)"
knative_kourier:
description: "The version of Knative Net Kourier to install on the Kind cluster (not installed by default - example: v1.0.0)"
knative_eventing:
description: "The version of Knative Eventing to install on the Kind cluster (not installed by default - example: v1.0.0)"
cpu:
description: "For Mac OS only: Number of CPUs to be allocated to the virtual machine (default: 2)"
memory:
description: "For Mac OS only: Size of the memory in GiB to be allocated to the virtual machine (default: 12)"
disk:
description: "For Mac OS only: Size of the disk in GiB to be allocated to the virtual machine (default: 60)"
runs:
using: "node20"
main: "main.js"
post: "cleanup.js"