-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathaction.yml
27 lines (27 loc) · 798 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
name: "DigitalOcean Kubernetes"
description: "Use DigitalOcean Kubernetes in GitHub Actions"
inputs:
personalAccessToken:
description: "DigitalOcean Personal Access Token; Used to fetch latest Kubernetes Config."
required: true
clusterName:
description: "The name of the DigitalOcean Kubernetes cluster that you plan to work with."
required: true
expirationTime:
description: "How long the kubeconfig should stay valid for."
required: false
default: "600"
namespace:
description: "The Kubernetes namespace to operate under."
required: false
default: "default"
version:
description: "The kubectl version to use."
required: false
default: "1.21.9"
runs:
using: "node20"
main: "dist/index.js"
branding:
icon: "cloud"
color: "blue"