Porting from k8s-actions repo

This commit is contained in:
Deepak Sattiraju
2019-09-10 15:35:26 +05:30
parent 56a89b9073
commit 483d185419
230 changed files with 27611 additions and 1 deletions

27
action.yml Normal file
View File

@@ -0,0 +1,27 @@
name: 'Kubernetes set context'
description: 'Kubernetes set context'
inputs:
# Used for setting the target K8s cluster context which will be used by other actions like azure/k8s-actions/k8s-deploy or azure/k8s-actions/k8s-create-secret
kubeconfig:
description: 'Kubernetes Config'
required: false
default: ''
context:
description: 'If your kubeconfig has multiple contexts, use this field to use a specific context, otherwise the default one would be chosen'
required: false
default: ''
k8s-url:
description: 'Cluster Url'
required: false
default: ''
k8s-secret:
description: 'Service account token'
required: false
default: ''
branding:
color: 'green' # optional, decorates the entry in the GitHub Marketplace
runs:
using: 'node12'
main: 'lib/login.js'