Skip to content

Commit 94d64d6

Browse files
committed
update fdb 7.1 version where it is used as an example or default
1 parent 67b254c commit 94d64d6

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

docs/manual/customization.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ Using service IPs presents its own challenges:
245245
Using Pod IPs has the limitation that Pods might get a new IP address if they are recreated and sometimes using service IPs is not the right approach.
246246
FDB supports to use DNS in the cluster file since 7.1 and the operator can make use of that.
247247
*Note*: This requires the following customization to inject the 7.1 library and use it as primary library (see code example below). As an alternative you can build the operator image by yourself that contains the 7.1 library as the primary library.
248-
Building the operator by yourself can be achieved with `docker build --build-arg FDB_VERSION=7.1.25 -t foundationdb/fdb-kubernetes-operator .`.
248+
Building the operator by yourself can be achieved with `docker build --build-arg FDB_VERSION=7.1.33 -t foundationdb/fdb-kubernetes-operator .`.
249249

250250
```yaml
251251
initContainers:

e2e/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ If the test suite is not able to get at least 2 different `StorageClasses` the m
4040
The `Makefile` provides different options to customize a test run, e.g. with `FDB_VERSION` a user can specify the used FDB version for a test run:
4141

4242
```bash
43-
FDB_VERSION=7.1.29 make -C e2e -kj test_operator.run
43+
FDB_VERSION=7.1.33 make -C e2e -kj test_operator.run
4444
```
4545

4646
If those tests are running on a cluster that has no chaos-mesh installed, you can set `ENABLE_CHAOS_TESTS=false` to disable all test that uses chaos-mesh.

e2e/scripts/setup_e2e.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ cd "${SCRIPT_DIR}"
6363
# Kubernetes version for the Kind clusters
6464
KUBE_VERSION=${KUBE_VERSION:-"v1.24.7"}
6565
# Defines the FDB version that should be preloaded into the Kind cluster
66-
FDB_VERSION=${FDB_VERSION:-"7.1.25"}
66+
FDB_VERSION=${FDB_VERSION:-"7.1.33"}
6767
# Defines the previous FDB version that should be preloaded into the Kind cluster
6868
UPGRADE_VERSIONS=${UPGRADE_VERSIONS:-""}
6969
# Defines the FDB version that are used for upgreade tests and that should be preloaded into the Kind cluster

sample-apps/fdb-profile-analyzer/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM python:3.9-slim
22
USER root
33

4-
ARG FDB_VERSION=7.1.21
4+
ARG FDB_VERSION=7.1.33
55
RUN apt-get update \
66
&& apt-get install -y wget \
77
bind9-utils \

scripts/setup_e2e.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ cd "${SCRIPT_DIR}"
5757

5858
# Kubernetes version for the Kind clusters
5959
KUBE_VERSION=${KUBE_VERSION:-"v1.24.7"}
60-
FDB_VERSION=${FDB_VERSION:-"7.1.25"}
60+
FDB_VERSION=${FDB_VERSION:-"7.1.33"}
6161

6262
# To test a multi-region FDB cluster setup we need to have 4 Kubernetes clusters
6363
cluster1=${CLUSTER1:-cluster1}

0 commit comments

Comments
 (0)