Versions Compared

Key

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

...

You have an existing AEM Projects that uses wcm.io DevOps CONGA and CONGA AEM Definitions 0.x for automating your AEM infrastructure deployments. You want to update to AEM Definitions 1.x.

Solution

With WDCONGA-14 some predefined roles have changed, this required updates in your CONGA environment filesWDCONGA-12 and WDCONGA-18 the roles for AEM Dispatcher where refactored and are now much more powerful than before. But there are some backward-incompatible changes, you need to update your environment for the aspects listed in this page.

Remove role aem-disptacher-common

...

  • Replace all references to the role aem-dispatcher-author with the role aem-dispatcher.
  • Add a new variant aem-author.
  • Remove references to variants no-ssland no-ssl+ssl, use only the variant ssl if HTTPS should be supported. That means that HTTP support is always activated implicitly - but you can set httpd.ssl.enforce to enforce a redirect to SSL.

Example:

Old definitionNew definition


No Format
nopaneltrue
  - role: aem-dispatcher-author
    variant: ssl



No Format
nopaneltrue
  - role: aem-dispatcher
    variants:
    - aem-author
    - ssl


...