forked from craftyc0der/github-action-helm3-eks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
30 lines (30 loc) · 962 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
name: 'Helm 3'
description: 'Helm 3'
branding:
icon: 'compass'
color: 'blue'
inputs:
exec:
description: 'The full helm command to run (including helm)'
required: true
kubeconfig:
description: 'The full kubeconfig'
required: false
aws_access_key_id:
description: >-
AWS Access Key ID. This input is required if running in the GitHub hosted environment.
It is optional if running in a self-hosted environment that already has AWS credentials,
for example on an EC2 instance.
required: false
aws_secret_access_key:
description: >-
AWS Secret Access Key. This input is required if running in the GitHub hosted environment.
It is optional if running in a self-hosted environment that already has AWS credentials,
for example on an EC2 instance.
required: false
aws_region:
description: 'AWS Region, e.g. us-east-2'
required: false
runs:
using: 'docker'
image: 'Dockerfile'