Skip to content

Releases: oracle/coherence-operator

v2.0.5

20 Dec 13:42
Compare
Choose a tag to compare

Fixes:

  • Disable Flight Recorder if the Coherence image is not running a HotSpot JVM

  • Issue #379 Coherence fails to start in OpenShift.
    Whilst this issue has been fixed there are still issues where the existing Coherence images fail on OpenShift due to file permissions in the image. The images have an oracle user that owns the Coherence installation directories but OpenShift runs the containers with a random user. This will likely be fixed in future Coherence images but in order to make existing images work:

  1. Ensure the anyuid security content is granted
  2. Ensure that WebLogic containers are annotated with openshift.io/scc: anyuid

For example, to update the OpenShift policy, use:

$ oc adm policy add-scc-to-user anyuid -z default

and add the openshift.io/scc annotation to the CoherenceCluster For example:

kind: CoherenceCluster
metadata:
  name: test-cluster
spec:
  annotations:
    openshift.io/scc: anyuid
roles:
  - role: storage

v2.0.3

13 Dec 16:33
Compare
Choose a tag to compare

Potential fix for issue #371

v2.0.2

18 Nov 08:01
Compare
Choose a tag to compare

Fixes:
Issue #368
It appeared that some older versions of kubectl could not scale a CoherenceRole that did not have a specific replicas value set.

[Issue #367]
A bug in the coherencerole_controller caused it to corrupt the CoherenceRole spec if values such as jvm.args were specified at the default level and for a specific role.

v2.0.1

13 Nov 07:04
Compare
Choose a tag to compare

Fixes:
Issue 365
Add additional network and DNS configuration options to the CRD. See the related documentation here
https://oracle.github.io/coherence-operator/docs/2.0.1/#/clusters/095_networking

Issue 364
Fixed an issue where JVM args were being corrupted if they were specified at both the default level and for a specific role if creating a cluster with explicit roles defined.