Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions charts/incubator/hyperswitch-app/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ appVersion: 1.16.0
description: Hyperswitch is a community-led, open payments switch designed to empower digital businesses by providing fast, reliable, and affordable access to the best payments infrastructure.
name: hyperswitch-app
type: application
version: 0.3.0-beta.3
version: 0.3.0-beta.4
dependencies:
- name: redis
version: 18.6.1
repository: https://charts.bitnami.com/bitnami
condition: redis.enabled
- name: valkey
version: 0.8.1
repository: https://valkey.io/valkey-helm/
condition: valkey.enabled
- name: postgresql
repository: https://charts.bitnami.com/bitnami
version: 15.5.38
Expand Down
955 changes: 499 additions & 456 deletions charts/incubator/hyperswitch-app/README.md

Large diffs are not rendered by default.

22 changes: 15 additions & 7 deletions charts/incubator/hyperswitch-app/Taskfile.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,21 +63,29 @@ tasks:
aliases:
- har

helm-redis-install:
desc: deploy standalone bitnami redis based on helm chart
helm-add-valkey-repo:
desc: helm add repo and upgrade
cmds:
- task: helm-add-repo
- helm repo add valkey https://valkey.io/valkey-helm/
- helm repo update
aliases:
- har

helm-valkey-install:
desc: deploy standalone valkey based on helm chart
cmds:
- task: helm-add-valkey-repo
- >-
helm upgrade
--install
{{ .RELEASE_NAME }}
bitnami/redis
--version 18.6.1
valkey/valkey
--version 0.8.1
-n {{ .NAMESPACE }}
--debug
-f dev/bitnami-redis-values.yaml
-f dev/bitnami-valkey-values.yaml
vars:
RELEASE_NAME: redis-ext
RELEASE_NAME: valkey-ext
NAMESPACE: hyperswitch
aliases:
- hri
Expand Down
Loading