-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathaction.yaml
27 lines (27 loc) · 900 Bytes
/
action.yaml
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
name: "MicroK8s Action"
description: "Run a MicroK8s Kubernetes cluster in your GitHub Action"
author: "balchua"
inputs:
channel: # MicroK8s channel
description: "The MicroK8s Channel to use. More information here https://microk8s.io/docs/setting-snap-channel"
required: true
default: "latest/stable"
devMode:
description: "Enable devmode, this is only applicable to strict confinement"
required: false
default: "false"
addons:
description: "A JSON array of addons to enable"
required: false
default: "[]"
launch-configuration:
description: "Fully qualified path where the custom MicroK8s launch configuration is located"
required: false
default: ""
sideload-images-path:
description: "Fully qualified path where the container image tarballs is located"
required: false
default: ""
runs:
using: "node20"
main: "lib/index.js"