forked from yellowmegaman/k3s-gha
-
Notifications
You must be signed in to change notification settings - Fork 1
/
action.yml
33 lines (33 loc) · 904 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
name: 'github actions k3s'
author: 'Dmitry Rozhdestvenskiy <[email protected]>'
description: 'run k3s on github actions'
branding:
icon: 'aperture'
color: 'yellow'
inputs:
k3s_tag:
description: "k3s tag to use"
required: false
default: 'v1.17.4-k3s1'
k3s_arguments:
description: "k3s arguments"
required: false
default: "--no-deploy=traefik"
custom_registry:
description: "whenever to use registries.yaml in your repo or not"
required: true
registries_yaml_path:
description: "where to look for registries.yaml relative path"
required: false
default: "registries.yaml"
kubectl_version:
description: "kubectl version to use"
required: false
default: "v1.18.1"
install_kubectl:
description: "whenever to copy kubectl to runner workspace"
required: false
default: "true"
runs:
using: 'docker'
image: 'Dockerfile'