forked from pdemagny/github-actions-ek8s-toolbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
46 lines (46 loc) · 1.27 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
name: "helm-eks"
description: "Github Action to work with helm charts & AWS EKS."
author: "Pierre DEMAGNY"
branding:
icon: "terminal"
color: "blue"
inputs:
command:
description: "The command(s) to run."
required: true
eksClusterName:
description: "Name of the EKS cluster operate on."
required: true
awsAccessKeyId:
description: "Your AWS access key id to get the cluster context."
required: true
awsSecretAccessKey:
description: "Your AWS Secret access key to get the cluster context."
required: true
awsDefaultRegion:
description: "Your AWS region to get the cluster context."
required: false
default: "eu-west-1"
helmVersion:
description: "helm version to install."
required: false
default: "2.14.0"
helm3Version:
description: "helm3 version to install."
required: false
default: "3.4.0"
kubectlVersion:
description: "kubectl version to install."
required: false
default: "1.13.9"
runs:
using: "docker"
image: "docker://lifepal/helm-eks:v1.1"
args:
- ${{ inputs.command }}
- ${{ inputs.eksClusterName }}
- ${{ inputs.awsAccessKeyId }}
- ${{ inputs.awsSecretAccessKey }}
- ${{ inputs.awsDefaultRegion }}
- ${{ inputs.helmVersion }}
- ${{ inputs.kubectlVersion }}