forked from mchandler-plato/helm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
62 lines (62 loc) · 1.89 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: Deliverybot Helm Action
description: Deploys a helm chart
author: deliverybot
icon: box
color: gray-dark
inputs:
release:
description: Helm release name. Will be combined with track if set. (required)
required: true
namespace:
description: Kubernetes namespace name. (required)
required: true
chart:
description: Helm chart path. If set to "app" this will use the built in helm
chart found in this repository. (required)
required: true
repository:
description: Helm repo url to use
required: false
repository-username:
description: Helm repo username
required: false
repository-password:
description: Helm repo password
required: false
values:
description: Helm chart values, expected to be a YAML or JSON string.
required: false
task:
description: Task name. If the task is "remove" it will remove the configured
helm release.
required: false
dry-run:
description: Simulate an upgrade.
required: false
atomic:
description: If true, upgrade process rolls back changes made in case of failed upgrade. Defaults to true.
required: false
helm:
description: Helm binary to execute, one of [helm, helm3].
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
schema-location:
description: addition json openapi schema locations for validate
required: false
runs:
using: docker
image: Dockerfile