-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yaml
30 lines (30 loc) · 976 Bytes
/
action.yaml
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: 'Deploy with kustomize'
description: 'This action compiles your kustomize manifests and deploys it with kubectl'
inputs:
registry:
description: 'Registry to the docker images'
required: false
images:
description: 'The images to edit to a new image version. Note its currently hardcoded to change from :latest to a version you provide'
required: false
overlay:
description: 'The path to the overlay to kustomize'
required: true
monitoring:
description: 'Enables kubectl rollout checks on all Deployments, statefulsets and daemonsets within the compiled manifest'
required: false
kustomize:
description: 'The version of kustomize to use'
required: true
default: '4.4.1'
kubectl:
description: 'The version of kustomize to use'
required: true
default: '1.23.6'
namesuffix:
description: 'Add suffix to all resources'
required: false
default: ''
runs:
using: 'node16'
main: 'dist/index.js'