forked from stefanprodan/kube-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
38 lines (38 loc) · 934 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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
name: 'Kubernetes toolset'
description: 'Github Action with Kubernetes tools: kubectl, kustomize, helm, kubeval, kubeaudit, conftest, jq, yq, go'
author: 'Stefan Prodan'
branding:
icon: 'command'
color: 'blue'
inputs:
command:
description: 'command to run'
required: true
kubectl:
description: 'kubectl version'
kustomize:
description: 'kustomize version'
helm:
description: 'helm version'
helmv3:
description: 'helm version'
kubeseal:
description: 'kubeseal version'
kubeaudit:
description: 'kubeaudit version'
kubeval:
description: 'kubeval version'
conftest:
description: 'conftest version'
runs:
using: 'docker'
image: 'Dockerfile'
args:
- ${{ inputs.command }}
- ${{ inputs.kubectl }}
- ${{ inputs.kustomize }}
- ${{ inputs.helm }}
- ${{ inputs.helmv3 }}
- ${{ inputs.kubeseal }}
- ${{ inputs.kubeval }}
- ${{ inputs.conftest }}