-
Notifications
You must be signed in to change notification settings - Fork 14
/
action.yml
37 lines (36 loc) · 1003 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
31
32
33
34
35
36
37
name: Rancher Update Service
branding:
color: blue
icon: arrow-up-circle
description: An action for updating a service in the Rancher 2.x environment
inputs:
rancher_url:
description: Rancher instance URL
required: true
rancher_token:
description: Rancher API access token
required: true
cluster_id:
description: Rancher/Kubernetes Cluster ID
required: true
project_id:
description: Rancher Project ID
required: true
namespace:
description: Rancher/Kubernetes Namespace
required: true
kind:
description: Kind of workload, e.g. deployment (default), cronjob, statefulset, ...
required: false
workload:
description: Workload (Deployment, CronJob, StatefulSet, ...) within the Namespace
required: true
deployment:
description: Deployment/Service within the Namespace - deprecated, use workload instead
required: false
docker_image:
description: Docker image
required: true
runs:
using: node20
main: main.js