From 5b58ec5cdd1babb182de2f489661b13ea13e207d Mon Sep 17 00:00:00 2001 From: Isaiah Olson Date: Sun, 14 Sep 2025 03:15:59 -0500 Subject: [PATCH] Update FoundationDB to use latest stable version supported by the operator by default Signed-off-by: Isaiah Olson --- hack/e2e-apps/foundationdb.bats | 2 +- packages/apps/foundationdb/Chart.yaml | 2 +- packages/apps/foundationdb/README.md | 4 ++-- packages/apps/foundationdb/values.schema.json | 4 ++-- packages/apps/foundationdb/values.yaml | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/hack/e2e-apps/foundationdb.bats b/hack/e2e-apps/foundationdb.bats index e9e43cad..e39561c8 100644 --- a/hack/e2e-apps/foundationdb.bats +++ b/hack/e2e-apps/foundationdb.bats @@ -11,7 +11,7 @@ metadata: spec: replicas: 3 cluster: - version: "7.4.1" + version: "7.3.63" processCounts: storage: 3 stateless: -1 diff --git a/packages/apps/foundationdb/Chart.yaml b/packages/apps/foundationdb/Chart.yaml index d0463fdf..52fdfa11 100644 --- a/packages/apps/foundationdb/Chart.yaml +++ b/packages/apps/foundationdb/Chart.yaml @@ -22,4 +22,4 @@ version: 0.1.0 # 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: "7.4.1" \ No newline at end of file +appVersion: "7.3.63" \ No newline at end of file diff --git a/packages/apps/foundationdb/README.md b/packages/apps/foundationdb/README.md index a6c4c688..2825fa8e 100644 --- a/packages/apps/foundationdb/README.md +++ b/packages/apps/foundationdb/README.md @@ -27,7 +27,7 @@ replicas: 3 # Cluster process configuration cluster: - version: "7.4.1" + version: "7.3.63" processCounts: storage: 3 # Storage processes stateless: -1 # Automatically calculated @@ -147,7 +147,7 @@ For Cozystack-specific issues, consult the Cozystack documentation or support ch | `cluster.processCounts.stateless` | Number of stateless processes (-1 for automatic) | `int` | `-1` | | `cluster.processCounts.storage` | Number of storage processes | `int` | `3` | | `cluster.processCounts.cluster_controller` | Number of cluster controller processes | `int` | `1` | -| `cluster.version` | Version of FoundationDB to use | `string` | `7.4.1` | +| `cluster.version` | Version of FoundationDB to use | `string` | `7.3.63` | | `cluster.faultDomain` | Fault domain configuration | `object` | `{}` | | `cluster.faultDomain.key` | Fault domain key | `string` | `foundationdb.org/none` | | `cluster.faultDomain.valueFrom` | Fault domain value source | `string` | `$FDB_ZONE_ID` | diff --git a/packages/apps/foundationdb/values.schema.json b/packages/apps/foundationdb/values.schema.json index c1a3805f..b29aa2e2 100644 --- a/packages/apps/foundationdb/values.schema.json +++ b/packages/apps/foundationdb/values.schema.json @@ -110,7 +110,7 @@ "stateless": -1, "storage": 3 }, - "version": "7.4.1" + "version": "7.3.63" }, "required": [ "faultDomain", @@ -176,7 +176,7 @@ "version": { "description": "Version of FoundationDB to use", "type": "string", - "default": "7.4.1" + "default": "7.3.63" } } }, diff --git a/packages/apps/foundationdb/values.yaml b/packages/apps/foundationdb/values.yaml index 194c69e5..d68f4932 100644 --- a/packages/apps/foundationdb/values.yaml +++ b/packages/apps/foundationdb/values.yaml @@ -22,7 +22,7 @@ cluster: storage: 3 # Storage processes cluster_controller: 1 - version: "7.4.1" + version: "7.3.63" faultDomain: key: "foundationdb.org/none"