-
Notifications
You must be signed in to change notification settings - Fork 7
/
action.yaml
45 lines (45 loc) · 1.28 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
name: 'helmfile-action'
description: 'Install and run Helmfile'
author: 'helmfile'
inputs:
helmfile-args:
required: true
description: 'Helmfile arguments'
helmfile-auto-init:
required: false
description: 'Automatically initialize helmfile'
default: 'false'
helmfile-version:
required: false
description: 'Helmfile version'
default: 'latest'
helm-version:
required: false
description: 'Helm version'
default: 'latest'
helmfile-workdirectory:
required: false
description: 'Helmfile working directory'
default: '.'
helm-plugins:
required: false
description: 'Comma separated list of Helm plugins to install'
default: 'https://github.com/databus23/helm-diff'
helmfile-kubeconfig-context:
required: false
description: 'kubeconfig context, it not empty, it will be written to the kubeconfig file'
default: ''
helm-diff-color:
required: false
description: 'Enable helm diff plugin color output'
default: 'true'
outputs:
exit-code:
description: 'Exit code of helmfile. Useful to handle diff --detailed-exitcode'
helmfile-stdout:
description: 'Standard output of helmfile command'
helmfile-stderr:
description: 'Error output of helmfile command'
runs:
using: 'node20'
main: 'dist/index.js'