Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

The following provides important information related to Usage Engine 3.12:

Table of Contents

Anchor
removed
removed
Removed Values from the Helm Chart

...

  • The mzOperator.* values have been moved to operator.*.
  • 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 the operator.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 to get and patch the pods/status resource.

      Code Block
      languageyml
      titleExample rule specification
      kind: Role
      apiVersion: rbac.authorization.k8s.io/v1
      metadata:
        name: my-ecd-role
      rules:
        - apiGroups: [""]
          resources: ["pods/status"]
          verbs: ["get", "patch"]


  • The default memory limits for the platform JVM have 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
rollback
rollback
Action Required for Rollback from 3.x to 2.x

If you need to perform a helm rollback from a 3.x version to a 2.x version, the existing EC Deployment needs to be patched after having run the helm rollback command.

...