forked from craftyc0der/github-action-kubectl-eks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
30 lines (30 loc) · 991 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: 'Kubectl 1.21.2'
description: 'Kubectl 1.21.2 for EKS'
branding:
icon: 'compass'
color: 'blue'
inputs:
exec:
description: 'The full kubectl command to run (including kubectl)'
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: true
runs:
using: 'docker'
image: 'Dockerfile'