mirror of
https://github.com/keycloak/keycloak.git
synced 2026-01-10 15:32:05 -03:30
* Refactor high-availability guide to include both single and multi cluster architectures Closes #30095 Closes #41585 Signed-off-by: Ryan Emerson <remerson@ibm.com> Signed-off-by: Alexander Schwartz <aschwart@redhat.com> Signed-off-by: Alexander Schwartz <alexander.schwartz@gmx.net> Co-authored-by: Alexander Schwartz <aschwart@redhat.com> Co-authored-by: Alexander Schwartz <alexander.schwartz@gmx.net>
33 lines
1.0 KiB
Plaintext
33 lines
1.0 KiB
Plaintext
<#import "/templates/options.adoc" as opts>
|
||
|
||
<#macro guide title summary priority=999 deniedCategories="" includedOptions="" excludedOptions="" preview="" tileVisible="true" previewDiscussionLink="">
|
||
:guide-id: ${id}
|
||
:guide-parent: ${parent}
|
||
:guide-title: ${title}
|
||
:guide-summary: ${summary}
|
||
:guide-priority: ${priority}
|
||
:guide-tile-visible: ${tileVisible}
|
||
:version: ${version}
|
||
|
||
include::${attributes}
|
||
|
||
[[${id}]]
|
||
= ${title}
|
||
|
||
ifeval::["${preview}" == "true"]
|
||
WARNING: This {section} is describing a feature which is currently in preview.
|
||
ifeval::["${previewDiscussionLink}" == ""]
|
||
Please provide your feedback while we’re continuing to work on this.
|
||
endif::[]
|
||
ifeval::["${previewDiscussionLink}" != ""]
|
||
Please provide your feedback by link:${previewDiscussionLink}[joining this discussion] while we’re continuing to work on this.
|
||
endif::[]
|
||
endif::[]
|
||
|
||
<#nested>
|
||
|
||
<#if includedOptions?has_content>
|
||
<@opts.printRelevantOptions includedOptions=includedOptions excludedOptions=excludedOptions deniedCategories=deniedCategories></@>
|
||
</#if>
|
||
</#macro>
|