-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathTaskfile.yaml
More file actions
42 lines (36 loc) · 1016 Bytes
/
Taskfile.yaml
File metadata and controls
42 lines (36 loc) · 1016 Bytes
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
38
39
40
41
42
# https://taskfile.dev
version: '3'
tasks:
default:
cmds:
- task --list-all
silent: true
package-incubator-hyperswitch-helm:
#language=sh
cmds:
- >
STACK=charts/incubator/hyperswitch-stack &&
version=$(grep '^version:' $STACK/Chart.yaml | awk '{print $2}') &&
helm package $STACK --dependency-update &&
helm repo index $STACK --url https://juspay.github.io/hyperswitch-helm/v$version &&
mkdir -p v$version && mv hyperswitch-stack-$version.tgz $STACK/index.yaml v$version &&
helm repo index . --url https://juspay.github.io/hyperswitch-helm
aliases:
- pihh
update-readme:
#language=sh
cmds:
- >
docker run --rm
-v $(pwd):/helm-docs
-w /helm-docs
jnorwood/helm-docs:latest
--document-dependency-values=true
--chart-search-root=charts/incubator
aliases:
- ur
repo-update-index:
#language=sh
cmds:
- >
helm repo index repo