Skip to content

Commit b8c03ae

Browse files
authored
Fix #653 - Incorrect usage of COHERENCE_CACHE_CONFIG in example yaml files (#654)
1 parent 425cc0b commit b8c03ae

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

examples/025_extend_client/README.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ include::manifests/minimal-job.yaml[]
232232
233233
To be able to run the client we need to set in three pieces of information.
234234
235-
* The name of the cache configuration file. We set this using the `COHERENCE_CACHE_CONFIG` environment variable, and set the value to `minimal-client-cache-config.xml`, which is the configuration file we're using in this example.
235+
* The name of the cache configuration file. We set this using the `COHERENCE_CACHECONFIG` environment variable, and set the value to `minimal-client-cache-config.xml`, which is the configuration file we're using in this example.
236236
* The client needs to be able to discover the storage Pods to connect to. Just like the server cluster uses well known addresses to discover a cluster, the client can do the same. We set the `COHERENCE_WKA` environment variable to the name of the WKA service created for the server when we deployed it above, in this case it is `storage-wka`.
237237
* Finally, we set the name of the Coherence cluster the client will connect to. When we deployed the server we did not specify a name, so the default cluster name will be the same as the `Coherence` resource name, in this case `storage`. So we set the `COHERENCE_CLUSTER` environment variable to `storage`.
238238

examples/025_extend_client/manifests/minimal-job.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ spec:
1010
- name: client
1111
image: simple-extend-client:1.0.0
1212
env:
13-
- name: COHERENCE_CACHE_CONFIG
13+
- name: COHERENCE_CACHECONFIG
1414
value: minimal-client-cache-config.xml
1515
- name: COHERENCE_WKA
1616
value: storage-wka

examples/025_extend_client/manifests/minimal-other-namespace-job.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ spec:
1010
- name: client
1111
image: simple-extend-client:1.0.0
1212
env:
13-
- name: COHERENCE_CACHE_CONFIG
13+
- name: COHERENCE_CACHECONFIG
1414
value: minimal-client-cache-config.xml
1515
- name: COHERENCE_WKA
1616
value: storage-wka.default.svc

0 commit comments

Comments
 (0)