-
Notifications
You must be signed in to change notification settings - Fork 29
/
action.yml
46 lines (46 loc) · 1.29 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
# action.yaml
name: 'Kustomize Github Action'
author: 'karancode <[email protected]>'
description: 'Github action for kustomize - manily to perform kustomize build for the k8s config yamls'
branding:
icon: 'anchor'
color: 'blue'
inputs:
kustomize_version:
description: 'Kustomize version'
required: true
default: '3.0.0'
kustomize_install:
description: "whether to install kustomize or use already installed"
required: false
default: '1'
kustomize_build_dir:
description: 'Directory to do kustomize build on'
required: false
default: '.'
kustomize_comment:
description: 'Comment kustomize output'
required: false
default: '0'
kustomize_output_file:
description: 'Path to file to write the kustomize build output to'
required: false
default: ''
kustomize_build_options:
description: 'Provide build options to kustomize build'
required: false
default: ''
enable_alpha_plugins:
description: 'Enable Kustomize plugins'
required: false
default: '0'
token:
description: 'GitHub Token for Authentication to Github API (mainly for limit avoidance)'
required: false
default: ''
outputs:
kustomize_build_output:
description: 'Output of kustomize build'
runs:
using: 'docker'
image: 'Dockerfile'