generated from actions/container-action
-
Notifications
You must be signed in to change notification settings - Fork 4
/
action.yml
23 lines (23 loc) · 807 Bytes
/
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
name: "Helm Kubeconform (with schema support)"
description: "Generate manifests with `helm template` and run `kubeconform` on the results"
author: "Shiv Jha-Mathur"
inputs:
strict:
description: "Whether to run Kubeconform in strict mode"
default: "true"
additionalSchemaPaths:
description: "Newline-separated list of paths to look for schemas under, including filename template"
default: ""
chartsDirectory:
description: "Directory to search for chart directories under"
default: "charts"
required: true
runs:
using: "docker"
image: "Dockerfile"
env:
KUBECONFORM_STRICT: "${{ inputs.strict }}"
ADDITIONAL_SCHEMA_PATHS: "${{ inputs.additionalSchemaPaths }}"
CHARTS_DIRECTORY: "${{ inputs.chartsDirectory }}"
HELM_UPDATE_DEPENDENCIES: "true"
args: []