-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yaml
37 lines (37 loc) · 1.25 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
name: "Read Helm Chart.yaml"
description: "Read a Helm Chart's `Chart.yaml` file and expose the values as outputs."
author: "Ajla Dzekovic"
inputs:
path:
description: "Path to the Helm Chart directory"
required: true
outputs:
apiVersion:
description: The chart API version (always set)
name:
description: The name of the chart (always set)
version:
description: A SemVer 2 version (always set)
kubeVersion:
description: A SemVer range of compatible Kubernetes versions (optional)
description:
description: A single-sentence description of this project (optional)
type:
description: It is the type of chart (optional)
keywords:
description: A list of keywords about this project (optional)
home:
description: The URL of this project's home page (optional)
sources:
description: A list of URLs to source code for this project (optional)
repository:
description: The repository URL ("https://example.com/charts") (optional)
icon:
description: A URL to an SVG or PNG image to be used as an icon (optional).
appVersion:
description: The version of the app that this contains (optional).
deprecated:
description: Whether this chart is deprecated (optional)
runs:
using: "docker"
image: "Dockerfile"