initial commit. Fork of https://github.com/karancode/kustomize-github-action
This commit is contained in:
46
action.yml
Normal file
46
action.yml
Normal file
@@ -0,0 +1,46 @@
|
||||
# action.yaml
|
||||
name: 'Kustomize Github Action'
|
||||
author: 'karancode <karanthanvi0@gmail.com>'
|
||||
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'
|
||||
Reference in New Issue
Block a user