forked from vimeda/helm
-
Notifications
You must be signed in to change notification settings - Fork 2
/
action.yml
62 lines (62 loc) · 1.72 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
name: Helm Deploy
description: Deploys a helm chart to Kubernetes
author: lykon
branding:
icon: anchor
color: gray-dark
inputs:
release:
description: Helm release name. Will be combined with track if set.
required: true
namespace:
description: Kubernetes namespace name.
required: true
chart:
description:
Helm chart path. If set to "app" this will use the built in helm
chart found in this repository.
required: true
values:
description: Helm chart values, expected to be a YAML or JSON string.
required: false
dry-run:
description:
Task name. If the task is "remove" it will remove the configured
helm release.
required: false
force:
description: Force upgrade
required: false
token:
description:
Github repository token. If included and the event is a deployment
the deployment_status event will be fired.
required: false
value-files:
description:
Additional value files to apply to the helm chart. Expects JSON encoded
array or a string.
required: false
secrets:
description:
Secret variables to include in value file interpolation. Expects
JSON encoded map.
required: false
version:
description: Version of the app, usually commit sha works here.
required: false
repo:
description: Helm chart repository to be added.
required: false
repo-alias:
description: Helm repository alias that will be used.
required: false
repo-username:
description: Helm repository username if authentication is needed.
required: false
repo-password:
description: Helm repository password if authentication is needed.
required: false
runs:
using: docker
image: Dockerfile