-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathaction.yml
More file actions
51 lines (51 loc) · 1.72 KB
/
action.yml
File metadata and controls
51 lines (51 loc) · 1.72 KB
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
49
50
51
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'
token:
description: 'Used to retrieve release informations concerning KinD and Kubernetes from https://api.github.com'
default: '${{ github.token }}'
required: true
loadBalancer:
description: 'Setup a Metallb load-balancer'
default: 'false'
localRegistry:
description: 'Setup a local registry on localhost:5000'
default: 'false'
runs:
using: 'node12'
main: 'dist/main/index.js'
post: 'dist/post/index.js'
post-if: success()