forked from stefanprodan/kube-tools
-
Notifications
You must be signed in to change notification settings - Fork 3
/
action.yml
36 lines (36 loc) · 878 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
name: 'Kubernetes-toolbox'
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'
kops:
description: 'kops version'
runs:
using: 'docker'
image: 'Dockerfile'
args:
- ${{ inputs.command }}
- ${{ inputs.kubectl }}
- ${{ inputs.kustomize }}
- ${{ inputs.helm }}
- ${{ inputs.helmv3 }}
- ${{ inputs.kubeseal }}
- ${{ inputs.kubeaudit }}
- ${{ inputs.kops }}