Skip to content

Commit bf4bd1b

Browse files
authored
Smaller doc fixes (#2157)
1 parent 025f974 commit bf4bd1b

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

docs/manual/customization.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -248,16 +248,18 @@ Using service IPs presents its own challenges:
248248

249249
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.
250250
FDB supports to use DNS in the cluster file since 7.1 and the operator can make use of that.
251-
*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.
252-
Building the operator by yourself can be achieved with `docker build --build-arg FDB_VERSION=7.1.33 -t foundationdb/fdb-kubernetes-operator .`.
251+
252+
*Note*: This requires the following customization to inject the 7.1 library and use it as primary library (see code example below).
253+
As an alternative you can build the operator image by yourself that contains the 7.1 library as the primary library.
254+
Building the operator by yourself can be achieved with `docker build --build-arg FDB_VERSION=7.1.26 -t foundationdb/fdb-kubernetes-operator .`.
253255

254256
```yaml
255257
initContainers:
256258
...
257259
# Install this library in a special location to force the operator to
258260
# use it as the primary library.
259261
- name: foundationdb-kubernetes-init-7-1-primary
260-
image: foundationdb/foundationdb-kubernetes-sidecar:7.1.25
262+
image: foundationdb/foundationdb-kubernetes-sidecar:7.1.26-1
261263
args:
262264
- "--copy-library"
263265
- "7.1"
@@ -284,7 +286,7 @@ kind: FoundationDBCluster
284286
metadata:
285287
name: sample-cluster
286288
spec:
287-
version: 7.1.25
289+
version: 7.1.26
288290
routing:
289291
useDNSInClusterFile: true
290292
```

0 commit comments

Comments
 (0)