The following provides important information related to Usage Engine 23.0:
Table of Contents
Anchor | ||||
---|---|---|---|---|
|
...
- The
mzOperator.*
values have been moved tooperator.*
. - The operator has been made more event driven and less dependent on frequent periodic synchronizations.
- As a result the default synchronization period has changed from 30 seconds to 300 seconds (5 minutes).
Use theoperator.syncPeriod
value to set a different synchronization period. Also, if you are using your own service account(s) for your ECD(s), specified via the
operator.common.ecd
value, then you need to make sure that it has permissions toget
andpatch
thepods/status
resource.Code Block language yml title Example rule specification kind: Role apiVersion: rbac.authorization.k8s.io/v1 metadata: name: my-ecd-role rules: - apiGroups: [""] resources: ["pods/status"] verbs: ["get", "patch"]
- As a result the default synchronization period has changed from 30 seconds to 300 seconds (5 minutes).
The default memory limits for the platform JVM has changed. What used to be:
Code Block jvmArgs: - XX:MaxDirectMemorySize=4096m - XX:MaxMetaspaceSize=256m - Xms256m - Xmx512m
Is now:
Code Block jvmArgs: - XX:MaxMetaspaceSize=512m - Xms256m - Xmx2g
Anchor | ||||
---|---|---|---|---|
|
If you need to perform a helm rollback from a 3.x version to a 2.x version, the existing EC Deployment need to patched after having run the helm rollback command.
...