Skip to content

Commit d772032

Browse files
committed
chore: prepare v2.0.25
1 parent a16f9a3 commit d772032

File tree

11 files changed

+48
-48
lines changed

11 files changed

+48
-48
lines changed

components/operator/docs/02-Installation.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ To install the Formance Operator CRDs, you can use the following command:
1919

2020
```bash
2121
helm upgrade --install operator-crds oci://ghcr.io/formancehq/helm/operator-crds \
22-
--version v2.0.24 \
22+
--version v2.0.25 \
2323
--namespace formance-system \
2424
--create-namespace
2525
```
@@ -28,13 +28,13 @@ As noticed above, the version will always be the same as the operator version. C
2828

2929
### Operator Deployment
3030

31-
From version v2.0.24, CRDs are now packaged with `helm.sh/resource-policy: keep` to avoid deletion of the CRDs when the operator is uninstalled.
31+
From version v2.0.25, CRDs are now packaged with `helm.sh/resource-policy: keep` to avoid deletion of the CRDs when the operator is uninstalled.
3232

3333
You can deploy Formance Operator using Helm:
3434

3535
```bash
3636
helm upgrade --install regions oci://ghcr.io/formancehq/helm/regions \
37-
--version v2.0.24 \
37+
--version v2.0.25 \
3838
--namespace formance-system \
3939
--create-namespace \
4040
--set operator.operator-crds.create=false
@@ -86,7 +86,7 @@ Then you will be able to disable `operator-crds.create: false` and install the o
8686

8787
```bash
8888
helm upgrade --install regions oci://ghcr.io/formancehq/helm/regions \
89-
--version v2.0.24 \
89+
--version v2.0.25 \
9090
--namespace $NAMESPACE \
9191
--create-namespace \
9292
--set operator.operator-crds.create=false
@@ -97,7 +97,7 @@ helm upgrade --install regions oci://ghcr.io/formancehq/helm/regions \
9797

9898
```bash
9999
helm upgrade --install $RELEASE_NAME oci://ghcr.io/formancehq/helm/operator-crds \
100-
--version v2.0.24 \
100+
--version v2.0.25 \
101101
--namespace $NAMESPACE \
102102
--create-namespace
103103
```

components/operator/helm/crds/Chart.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ type: application
1414
# This is the chart version. This version number should be incremented each time you make changes
1515
# to the chart and its templates, including the app version.
1616
# Versions are expected to follow Semantic Versioning (https://semver.org/)
17-
version: v2.0.24
17+
version: v2.0.25
1818

1919
# This is the version number of the application being deployed. This version number should be
2020
# incremented each time you make changes to the application. Versions are not expected to
2121
# follow Semantic Versioning. They should reflect the version the application is using.
2222
# It is recommended to use it with quotes.
23-
appVersion: v2.0.24
23+
appVersion: v2.0.25
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
dependencies:
22
- name: operator-crds
33
repository: file://../crds
4-
version: v2.0.24
5-
digest: sha256:185e7272a7d3bfbc8377148a80fa21a317fdea76f5663f1d3a19be39fe1314e8
6-
generated: "2025-01-17T09:42:00.299525027Z"
4+
version: v2.0.25
5+
digest: sha256:da81c53a4e6ac7d1bf80ff9c7ae1aaea0f92dac63b6e399ca4980317884eaeab
6+
generated: "2025-01-28T14:32:02.456325879Z"

components/operator/helm/operator/Chart.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,16 @@ type: application
1414
# This is the chart version. This version number should be incremented each time you make changes
1515
# to the chart and its templates, including the app version.
1616
# Versions are expected to follow Semantic Versioning (https://semver.org/)
17-
version: v2.0.24
17+
version: v2.0.25
1818

1919
# This is the version number of the application being deployed. This version number should be
2020
# incremented each time you make changes to the application. Versions are not expected to
2121
# follow Semantic Versioning. They should reflect the version the application is using.
2222
# It is recommended to use it with quotes.
23-
appVersion: v2.0.24
23+
appVersion: v2.0.25
2424

2525
dependencies:
2626
- name: operator-crds
27-
version: v2.0.24
27+
version: v2.0.25
2828
repository: "file://../crds"
2929
condition: operator-crds.create

components/operator/helm/operator/values.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ image:
88
repository: ghcr.io/formancehq/operator
99
pullPolicy: IfNotPresent
1010
# Overrides the image tag whose default is the chart appVersion.
11-
tag: v2.0.24
11+
tag: v2.0.25
1212

1313
imagePullSecrets: []
1414
nameOverride: ""
@@ -32,7 +32,7 @@ operator:
3232
issuer: ""
3333

3434
utils:
35-
tag: "v2.0.24"
35+
tag: "v2.0.25"
3636

3737
podAnnotations: {}
3838

docker-compose.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ services:
1111
- ".local/gateway/Caddyfile:/etc/caddy/Caddyfile"
1212

1313
ledger:
14-
image: "ghcr.io/formancehq/ledger:v2.0.24"
14+
image: "ghcr.io/formancehq/ledger:v2.0.25"
1515
healthcheck:
1616
test: [ "CMD", "wget", "http://127.0.0.1:8080/_info", "-O", "-", "-q" ]
1717
interval: 10s
@@ -24,7 +24,7 @@ services:
2424
POSTGRES_URI: "postgresql://formance:formance@postgres:${FORMANCE_POSTGRES_PORT:-5432}/ledger?sslmode=disable"
2525

2626
payments-migrate:
27-
image: "ghcr.io/formancehq/payments:v2.0.24"
27+
image: "ghcr.io/formancehq/payments:v2.0.25"
2828
command: migrate up
2929
depends_on:
3030
postgres:
@@ -33,7 +33,7 @@ services:
3333
POSTGRES_URI: "postgres://formance:formance@postgres:${FORMANCE_POSTGRES_PORT:-5432}/payments?sslmode=disable"
3434

3535
payments-api:
36-
image: "ghcr.io/formancehq/payments:v2.0.24"
36+
image: "ghcr.io/formancehq/payments:v2.0.25"
3737
command: api server
3838
healthcheck:
3939
test: [ "CMD", "curl", "-f", "http://127.0.0.1:8080/_healthcheck" ]
@@ -51,7 +51,7 @@ services:
5151
CONFIG_ENCRYPTION_KEY: mysuperencryptionkey
5252

5353
payments-connectors:
54-
image: "ghcr.io/formancehq/payments:v2.0.24"
54+
image: "ghcr.io/formancehq/payments:v2.0.25"
5555
command: connectors server
5656
healthcheck:
5757
test: [ "CMD", "curl", "-f", "http://127.0.0.1:8080/_healthcheck" ]

ee/agent/helm/Chart.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ maintainers:
1010
icon: "https://avatars.githubusercontent.com/u/84325077?s=200&v=4"
1111

1212
type: application
13-
version: v2.0.24
14-
appVersion: v2.0.24
13+
version: v2.0.25
14+
appVersion: v2.0.25

ee/agent/helm/values.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ image:
1010
repository: ghcr.io/formancehq/agent
1111
pullPolicy: IfNotPresent
1212
# Overrides the image tag whose default is the chart appVersion.
13-
tag: v2.0.24
13+
tag: v2.0.25
1414

1515
imagePullSecrets: []
1616
nameOverride: ""

helm/regions/Chart.lock

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
dependencies:
22
- name: agent
33
repository: file://../../ee/agent/helm
4-
version: v2.0.24
4+
version: v2.0.25
55
- name: operator
66
repository: file://../../components/operator/helm/operator
7-
version: v2.0.24
8-
digest: sha256:dddc2f7e16c28c6edf8f4c55d9b3a8b3fd922e9a467d8365789c391735bac2db
9-
generated: "2025-01-17T09:43:50.311619328Z"
7+
version: v2.0.25
8+
digest: sha256:a7a34dd247821066d2820febf0e1dbc3c7695db6a717a0902a1a4a120f4c5c6a
9+
generated: "2025-01-28T14:33:55.603583869Z"

helm/regions/Chart.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ maintainers:
1010
icon: "https://avatars.githubusercontent.com/u/84325077?s=200&v=4"
1111

1212
type: application
13-
version: v2.0.24
13+
version: v2.0.25
1414
appVersion: "latest"
1515

1616
dependencies:
1717
- name: agent
18-
version: v2.0.24
18+
version: v2.0.25
1919
repository: "file://../../ee/agent/helm"
2020
condition: agent.enabled
2121
- name: operator
22-
version: v2.0.24
22+
version: v2.0.25
2323
repository: "file://../../components/operator/helm/operator"
2424
condition: operator.enabled

helm/regions/values.yaml

+19-19
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ operator:
66

77
image:
88
repository: "ghcr.io/formancehq/operator"
9-
tag: "v2.0.24"
9+
tag: "v2.0.25"
1010
operator:
1111
disableWebhooks: false
1212
region: "private"
@@ -29,7 +29,7 @@ agent:
2929
enabled: false
3030

3131
image:
32-
tag: "v2.0.24"
32+
tag: "v2.0.25"
3333
server:
3434
address: "app.formance.cloud:443"
3535
tls:
@@ -54,33 +54,33 @@ versions:
5454
search: v0.10.0
5555
auth: v0.4.4
5656
wallets: v0.4.6
57-
webhooks: v2.0.24
57+
webhooks: v2.0.25
5858
payments: v1.0.0-rc.5
5959
stargate: v0.1.10
60-
gateway: v2.0.24
60+
gateway: v2.0.25
6161
ledger: v1.10.14
62-
operator-utils: v2.0.24
62+
operator-utils: v2.0.25
6363
v1.0:
6464
orchestration: v0.2.1
6565
reconciliation: v0.1.0
6666
search: v0.10.0
6767
auth: v0.4.4
6868
wallets: v0.4.6
69-
webhooks: v2.0.24
69+
webhooks: v2.0.25
7070
payments: v1.0.0-rc.5
7171
stargate: v0.1.10
72-
gateway: v2.0.24
72+
gateway: v2.0.25
7373
ledger: v1.10.14
74-
operator-utils: v2.0.24
74+
operator-utils: v2.0.25
7575
v2.0:
76-
ledger: v2.0.24
77-
search: v2.0.24
78-
stargate: v2.0.24
79-
auth: v2.0.24
80-
wallets: v2.0.24
81-
webhooks: v2.0.24
82-
gateway: v2.0.24
83-
payments: v2.0.24
84-
orchestration: v2.0.24
85-
reconciliation: v2.0.24
86-
operator-utils: v2.0.24
76+
ledger: v2.0.25
77+
search: v2.0.25
78+
stargate: v2.0.25
79+
auth: v2.0.25
80+
wallets: v2.0.25
81+
webhooks: v2.0.25
82+
gateway: v2.0.25
83+
payments: v2.0.25
84+
orchestration: v2.0.25
85+
reconciliation: v2.0.25
86+
operator-utils: v2.0.25

0 commit comments

Comments
 (0)