diff --git a/components/operator/docs/02-Installation.md b/components/operator/docs/02-Installation.md index f01defbd0b..53bdd62cf1 100644 --- a/components/operator/docs/02-Installation.md +++ b/components/operator/docs/02-Installation.md @@ -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.22 \ +--version v2.0.23 \ --namespace formance-system \ --create-namespace ``` @@ -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.22, 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.23, 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.22 \ +--version v2.0.23 \ --namespace formance-system \ --create-namespace \ --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 ```bash helm upgrade --install regions oci://ghcr.io/formancehq/helm/regions \ ---version v2.0.22 \ +--version v2.0.23 \ --namespace $NAMESPACE \ --create-namespace \ --set operator.operator-crds.create=false @@ -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.22 \ +--version v2.0.23 \ --namespace $NAMESPACE \ --create-namespace ``` \ No newline at end of file diff --git a/components/operator/helm/crds/Chart.yaml b/components/operator/helm/crds/Chart.yaml index 49b8617e86..ee1aacf12d 100644 --- a/components/operator/helm/crds/Chart.yaml +++ b/components/operator/helm/crds/Chart.yaml @@ -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.22 +version: v2.0.23 # 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.22 +appVersion: v2.0.23 diff --git a/components/operator/helm/operator/Chart.lock b/components/operator/helm/operator/Chart.lock index 9bab6e6150..c004562aa6 100644 --- a/components/operator/helm/operator/Chart.lock +++ b/components/operator/helm/operator/Chart.lock @@ -1,6 +1,6 @@ dependencies: - name: operator-crds repository: file://../crds - version: v2.0.22 -digest: sha256:e4473ad0743c2a72da8732c3b32d20790e2c37b9d612294e11ae0935337c0fb3 -generated: "2024-11-26T15:04:10.847017439Z" + version: v2.0.23 +digest: sha256:e505b21198e6f00f7c8efe38da241c969f029ec77eae922cefd21cae732c022c +generated: "2024-12-02T08:28:56.930215275Z" diff --git a/components/operator/helm/operator/Chart.yaml b/components/operator/helm/operator/Chart.yaml index 1d9e949bbe..642e304fc2 100644 --- a/components/operator/helm/operator/Chart.yaml +++ b/components/operator/helm/operator/Chart.yaml @@ -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.22 +version: v2.0.23 # 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.22 +appVersion: v2.0.23 dependencies: - name: operator-crds - version: v2.0.22 + version: v2.0.23 repository: "file://../crds" condition: operator-crds.create diff --git a/components/operator/helm/operator/values.yaml b/components/operator/helm/operator/values.yaml index d4c89d745e..e99fc7684a 100644 --- a/components/operator/helm/operator/values.yaml +++ b/components/operator/helm/operator/values.yaml @@ -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.22 + tag: v2.0.23 imagePullSecrets: [] nameOverride: "" @@ -32,7 +32,7 @@ operator: issuer: "" utils: - tag: "v2.0.22" + tag: "v2.0.23" podAnnotations: {} diff --git a/docker-compose.yml b/docker-compose.yml index 874ad0ff3a..6c13a674a4 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -11,7 +11,7 @@ services: - ".local/gateway/Caddyfile:/etc/caddy/Caddyfile" ledger: - image: "ghcr.io/formancehq/ledger:v2.0.22" + image: "ghcr.io/formancehq/ledger:v2.0.23" healthcheck: test: [ "CMD", "wget", "http://127.0.0.1:8080/_info", "-O", "-", "-q" ] interval: 10s @@ -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.22" + image: "ghcr.io/formancehq/payments:v2.0.23" command: migrate up depends_on: postgres: @@ -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.22" + image: "ghcr.io/formancehq/payments:v2.0.23" command: api server healthcheck: test: [ "CMD", "curl", "-f", "http://127.0.0.1:8080/_healthcheck" ] @@ -51,7 +51,7 @@ services: CONFIG_ENCRYPTION_KEY: mysuperencryptionkey payments-connectors: - image: "ghcr.io/formancehq/payments:v2.0.22" + image: "ghcr.io/formancehq/payments:v2.0.23" command: connectors server healthcheck: test: [ "CMD", "curl", "-f", "http://127.0.0.1:8080/_healthcheck" ] diff --git a/ee/agent/helm/Chart.yaml b/ee/agent/helm/Chart.yaml index a155221bb8..c9691e6289 100644 --- a/ee/agent/helm/Chart.yaml +++ b/ee/agent/helm/Chart.yaml @@ -10,5 +10,5 @@ maintainers: icon: "https://avatars.githubusercontent.com/u/84325077?s=200&v=4" type: application -version: v2.0.22 -appVersion: v2.0.22 +version: v2.0.23 +appVersion: v2.0.23 diff --git a/ee/agent/helm/values.yaml b/ee/agent/helm/values.yaml index 18646ed920..77c4de5978 100644 --- a/ee/agent/helm/values.yaml +++ b/ee/agent/helm/values.yaml @@ -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.22 + tag: v2.0.23 imagePullSecrets: [] nameOverride: "" diff --git a/helm/regions/Chart.lock b/helm/regions/Chart.lock index 53fc0b5949..db4cdb10fd 100644 --- a/helm/regions/Chart.lock +++ b/helm/regions/Chart.lock @@ -1,9 +1,9 @@ dependencies: - name: agent repository: file://../../ee/agent/helm - version: v2.0.22 + version: v2.0.23 - name: operator repository: file://../../components/operator/helm/operator - version: v2.0.22 -digest: sha256:e76e33c146147fc90b801921d8c22739193fe1b88bb48e1cd184624cb922c89b -generated: "2024-11-26T15:06:47.125398057Z" + version: v2.0.23 +digest: sha256:74617724ff6525b66885cbb5871bb4ce5822d4298105a409b0b813104a90bcba +generated: "2024-12-02T08:30:44.052997198Z" diff --git a/helm/regions/Chart.yaml b/helm/regions/Chart.yaml index e28d630cec..87525559f2 100644 --- a/helm/regions/Chart.yaml +++ b/helm/regions/Chart.yaml @@ -10,15 +10,15 @@ maintainers: icon: "https://avatars.githubusercontent.com/u/84325077?s=200&v=4" type: application -version: v2.0.22 +version: v2.0.23 appVersion: "latest" dependencies: - name: agent - version: v2.0.22 + version: v2.0.23 repository: "file://../../ee/agent/helm" condition: agent.enabled - name: operator - version: v2.0.22 + version: v2.0.23 repository: "file://../../components/operator/helm/operator" condition: operator.enabled diff --git a/helm/regions/values.yaml b/helm/regions/values.yaml index 9e408c680a..bb948af982 100644 --- a/helm/regions/values.yaml +++ b/helm/regions/values.yaml @@ -6,7 +6,7 @@ operator: image: repository: "ghcr.io/formancehq/operator" - tag: "v2.0.22" + tag: "v2.0.23" operator: disableWebhooks: false region: "private" @@ -29,7 +29,7 @@ agent: enabled: false image: - tag: "v2.0.22" + tag: "v2.0.23" server: address: "app.formance.cloud:443" tls: @@ -54,33 +54,33 @@ versions: search: v0.10.0 auth: v0.4.4 wallets: v0.4.6 - webhooks: v2.0.22 + webhooks: v2.0.23 payments: v1.0.0-rc.5 stargate: v0.1.10 - gateway: v2.0.22 + gateway: v2.0.23 ledger: v1.10.14 - operator-utils: v2.0.22 + operator-utils: v2.0.23 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.22 + webhooks: v2.0.23 payments: v1.0.0-rc.5 stargate: v0.1.10 - gateway: v2.0.22 + gateway: v2.0.23 ledger: v1.10.14 - operator-utils: v2.0.22 + operator-utils: v2.0.23 v2.0: - ledger: v2.0.22 - search: v2.0.22 - stargate: v2.0.22 - auth: v2.0.22 - wallets: v2.0.22 - webhooks: v2.0.22 - gateway: v2.0.22 - payments: v2.0.22 - orchestration: v2.0.22 - reconciliation: v2.0.22 - operator-utils: v2.0.22 + ledger: v2.0.23 + search: v2.0.23 + stargate: v2.0.23 + auth: v2.0.23 + wallets: v2.0.23 + webhooks: v2.0.23 + gateway: v2.0.23 + payments: v2.0.23 + orchestration: v2.0.23 + reconciliation: v2.0.23 + operator-utils: v2.0.23