Skip to content

Commit

Permalink
feat(Ledger): Update Helm Charts
Browse files Browse the repository at this point in the history
  • Loading branch information
flemzord committed Apr 27, 2023
1 parent d31ee2e commit 79f25aa
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 2 additions & 2 deletions charts/ledger/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 1.1.0
version: 1.2.0

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: "v1.8.1"
appVersion: "v1.9.2"
3 changes: 2 additions & 1 deletion charts/ledger/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ledger

![Version: 1.1.0](https://img.shields.io/badge/Version-1.1.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v1.8.1](https://img.shields.io/badge/AppVersion-v1.8.1-informational?style=flat-square)
![Version: 1.2.0](https://img.shields.io/badge/Version-1.2.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v1.9.2](https://img.shields.io/badge/AppVersion-v1.9.2-informational?style=flat-square)

Formance Ledger Helm Chart

Expand Down Expand Up @@ -37,6 +37,7 @@ Formance Ledger Helm Chart
| ingress.hosts[0].paths[0].path | string | `"/"` | |
| ingress.hosts[0].paths[0].pathType | string | `"ImplementationSpecific"` | |
| ingress.tls | list | `[]` | |
| ledger.debug | bool | `false` | |
| ledger.httpBindAddr | string | `"0.0.0.0:3068"` | |
| ledger.lock.connString | string | `"redis://redis:6379/0"` | |
| ledger.lock.strategy | string | `"redis"` | |
Expand Down
2 changes: 2 additions & 0 deletions charts/ledger/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ spec:
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
imagePullPolicy: {{ .Values.image.pullPolicy }}
env:
- name: NUMARY_DEBUG
value: {{ .Values.ledger.debug | quote }}
- name: NUMARY_STORAGE_DRIVER
value: {{ .Values.ledger.storage.driver | quote }}
- name: NUMARY_STORAGE_POSTGRES_CONN_STRING
Expand Down
1 change: 1 addition & 0 deletions charts/ledger/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ image:
tag: ""

ledger:
debug: false
httpBindAddr: "0.0.0.0:3068"
# UIHttpBindAddr: "0.0.0.0:3078"
login: "ledger:ledger"
Expand Down

0 comments on commit 79f25aa

Please sign in to comment.