Skip to content

Commit

Permalink
v2.0.10
Browse files Browse the repository at this point in the history
  • Loading branch information
paul-nicolas committed Aug 16, 2024
1 parent 43bced8 commit 5404284
Show file tree
Hide file tree
Showing 11 changed files with 47 additions and 47 deletions.
10 changes: 5 additions & 5 deletions components/operator/docs/02-Installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ To install the Formance Operator CRDs, you can use the following command:

```bash
helm upgrade --install operator-crds oci://ghcr.io/formancehq/helm/operator-crds \
--version v2.0.9 \
--version v2.0.10 \
--namespace formance-system \
--create-namespace
```
Expand All @@ -28,13 +28,13 @@ As noticed above, the version will always be the same as the operator version. C

### Operator Deployment

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

You can deploy Formance Operator using Helm:

```bash
helm upgrade --install regions oci://ghcr.io/formancehq/helm/regions \
--version v2.0.9 \
--version v2.0.10 \
--namespace formance-system \
--create-namespace \
--set operator.operator-crds.create=false
Expand Down Expand Up @@ -86,7 +86,7 @@ Then you will be able to disable `operator-crds.create: false` and install the o

```bash
helm upgrade --install regions oci://ghcr.io/formancehq/helm/regions \
--version v2.0.9 \
--version v2.0.10 \
--namespace $NAMESPACE \
--create-namespace \
--set operator.operator-crds.create=false
Expand All @@ -97,7 +97,7 @@ helm upgrade --install regions oci://ghcr.io/formancehq/helm/regions \

```bash
helm upgrade --install $RELEASE_NAME oci://ghcr.io/formancehq/helm/operator-crds \
--version v2.0.9 \
--version v2.0.10 \
--namespace $NAMESPACE \
--create-namespace
```
4 changes: 2 additions & 2 deletions components/operator/helm/crds/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,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: v2.0.9
version: v2.0.10

# 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: v2.0.9
appVersion: v2.0.10
6 changes: 3 additions & 3 deletions components/operator/helm/operator/Chart.lock
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
dependencies:
- name: operator-crds
repository: file://../crds
version: v2.0.9
digest: sha256:4b3070fcf9885505169b13850b9ff3e80bf1921738d6b518fad742c0f732b54f
generated: "2024-08-05T16:17:04.256932191Z"
version: v2.0.10
digest: sha256:1f6643fe98485315da8b877e521805812ff26b331cef3015d9e5f7273d89e9df
generated: "2024-08-16T08:02:48.003506273Z"
6 changes: 3 additions & 3 deletions components/operator/helm/operator/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,16 @@ 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: v2.0.9
version: v2.0.10

# 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: v2.0.9
appVersion: v2.0.10

dependencies:
- name: operator-crds
version: v2.0.9
version: v2.0.10
repository: "file://../crds"
condition: operator-crds.create
2 changes: 1 addition & 1 deletion components/operator/helm/operator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ image:
repository: ghcr.io/formancehq/operator
pullPolicy: IfNotPresent
# Overrides the image tag whose default is the chart appVersion.
tag: v2.0.9
tag: v2.0.10

imagePullSecrets: []
nameOverride: ""
Expand Down
8 changes: 4 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ services:
- ".local/gateway/Caddyfile:/etc/caddy/Caddyfile"

ledger:
image: "ghcr.io/formancehq/ledger:v2.0.9"
image: "ghcr.io/formancehq/ledger:v2.0.10"
healthcheck:
test: [ "CMD", "wget", "http://127.0.0.1:8080/_info", "-O", "-", "-q" ]
interval: 10s
Expand All @@ -24,7 +24,7 @@ services:
POSTGRES_URI: "postgresql://formance:formance@postgres:${FORMANCE_POSTGRES_PORT:-5432}/ledger?sslmode=disable"

payments-migrate:
image: "ghcr.io/formancehq/payments:v2.0.9"
image: "ghcr.io/formancehq/payments:v2.0.10"
command: migrate up
depends_on:
postgres:
Expand All @@ -33,7 +33,7 @@ services:
POSTGRES_URI: "postgres://formance:formance@postgres:${FORMANCE_POSTGRES_PORT:-5432}/payments?sslmode=disable"

payments-api:
image: "ghcr.io/formancehq/payments:v2.0.9"
image: "ghcr.io/formancehq/payments:v2.0.10"
command: api server
healthcheck:
test: [ "CMD", "curl", "-f", "http://127.0.0.1:8080/_healthcheck" ]
Expand All @@ -51,7 +51,7 @@ services:
CONFIG_ENCRYPTION_KEY: mysuperencryptionkey

payments-connectors:
image: "ghcr.io/formancehq/payments:v2.0.9"
image: "ghcr.io/formancehq/payments:v2.0.10"
command: connectors server
healthcheck:
test: [ "CMD", "curl", "-f", "http://127.0.0.1:8080/_healthcheck" ]
Expand Down
4 changes: 2 additions & 2 deletions ee/agent/helm/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ maintainers:
icon: "https://avatars.githubusercontent.com/u/84325077?s=200&v=4"

type: application
version: v2.0.9
appVersion: v2.0.9
version: v2.0.10
appVersion: v2.0.10
2 changes: 1 addition & 1 deletion ee/agent/helm/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ image:
repository: ghcr.io/formancehq/agent
pullPolicy: IfNotPresent
# Overrides the image tag whose default is the chart appVersion.
tag: v2.0.9
tag: v2.0.10

imagePullSecrets: []
nameOverride: ""
Expand Down
8 changes: 4 additions & 4 deletions helm/regions/Chart.lock
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
dependencies:
- name: agent
repository: file://../../ee/agent/helm
version: v2.0.9
version: v2.0.10
- name: operator
repository: file://../../components/operator/helm/operator
version: v2.0.9
digest: sha256:e974341570442c2d9f1c3c0bcc4965110c06a5e3058857d94cde7173f565e6e8
generated: "2024-08-05T16:17:19.839021789Z"
version: v2.0.10
digest: sha256:9dacb50dcf070b10dafd457e83a777cfdb072ceef592adcb66ab720bd3f9e79f
generated: "2024-08-16T08:04:22.494029471Z"
6 changes: 3 additions & 3 deletions helm/regions/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ maintainers:
icon: "https://avatars.githubusercontent.com/u/84325077?s=200&v=4"

type: application
version: v2.0.9
version: v2.0.10
appVersion: "latest"

dependencies:
- name: agent
version: v2.0.9
version: v2.0.10
repository: "file://../../ee/agent/helm"
condition: agent.enabled
- name: operator
version: v2.0.9
version: v2.0.10
repository: "file://../../components/operator/helm/operator"
condition: operator.enabled
38 changes: 19 additions & 19 deletions helm/regions/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ operator:

image:
repository: "ghcr.io/formancehq/operator"
tag: "v2.0.9"
tag: "v2.0.10"
operator:
disableWebhooks: false
region: "private"
Expand All @@ -29,7 +29,7 @@ agent:
enabled: false

image:
tag: "v2.0.9"
tag: "v2.0.10"
server:
address: "app.formance.cloud:443"
tls:
Expand All @@ -54,33 +54,33 @@ versions:
search: v0.10.0
auth: v0.4.4
wallets: v0.4.6
webhooks: v2.0.9
webhooks: v2.0.10
payments: v1.0.0-rc.5
stargate: v0.1.10
gateway: v2.0.9
gateway: v2.0.10
ledger: v1.10.14
operator-utils: v2.0.9
operator-utils: v2.0.10
v1.0:
orchestration: v0.2.1
reconciliation: v0.1.0
search: v0.10.0
auth: v0.4.4
wallets: v0.4.6
webhooks: v2.0.9
webhooks: v2.0.10
payments: v1.0.0-rc.5
stargate: v0.1.10
gateway: v2.0.9
gateway: v2.0.10
ledger: v1.10.14
operator-utils: v2.0.9
operator-utils: v2.0.10
v2.0:
ledger: v2.0.9
search: v2.0.9
stargate: v2.0.9
auth: v2.0.9
wallets: v2.0.9
webhooks: v2.0.9
gateway: v2.0.9
payments: v2.0.9
orchestration: v2.0.9
reconciliation: v2.0.9
operator-utils: v2.0.9
ledger: v2.0.10
search: v2.0.10
stargate: v2.0.10
auth: v2.0.10
wallets: v2.0.10
webhooks: v2.0.10
gateway: v2.0.10
payments: v2.0.10
orchestration: v2.0.10
reconciliation: v2.0.10
operator-utils: v2.0.10

0 comments on commit 5404284

Please sign in to comment.