fix: linking within getting started on horizontal scaling
closes: #29390 Signed-off-by: Steve Hawkins <shawkins@redhat.com> Signed-off-by: Alexander Schwartz <aschwart@redhat.com> Co-authored-by: Alexander Schwartz <aschwart@redhat.com>
This commit is contained in:
parent
f680ef4f76
commit
03b5ba3462
3 changed files with 8 additions and 1 deletions
|
@ -1,4 +1,5 @@
|
||||||
<#import "/templates/guide.adoc" as tmpl>
|
<#import "/templates/guide.adoc" as tmpl>
|
||||||
|
<#import "/templates/links.adoc" as links>
|
||||||
|
|
||||||
<@tmpl.guide
|
<@tmpl.guide
|
||||||
title="Kubernetes"
|
title="Kubernetes"
|
||||||
|
@ -41,6 +42,8 @@ kubectl create -f https://raw.githubusercontent.com/keycloak/keycloak-quickstart
|
||||||
This command starts {project_name} on Kubernetes and creates an initial admin user with the username `admin` and password
|
This command starts {project_name} on Kubernetes and creates an initial admin user with the username `admin` and password
|
||||||
`admin`.
|
`admin`.
|
||||||
|
|
||||||
|
NOTE: If you will eventually want more than one server replica, please see the <@links.gettingstarted id="getting-started-scaling-and-tuning" anchor="horizontal-scaling" /> {section}.
|
||||||
|
|
||||||
=== Access {project_name} with Ingress addon enabled
|
=== Access {project_name} with Ingress addon enabled
|
||||||
|
|
||||||
Now create an Ingress for {project_name} by entering the following command:
|
Now create an Ingress for {project_name} by entering the following command:
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
<#import "/templates/guide.adoc" as tmpl>
|
<#import "/templates/guide.adoc" as tmpl>
|
||||||
|
<#import "/templates/links.adoc" as links>
|
||||||
|
|
||||||
<@tmpl.guide
|
<@tmpl.guide
|
||||||
title="OpenShift"
|
title="OpenShift"
|
||||||
|
@ -99,6 +100,8 @@ echo "{project_name} Account Console: $KEYCLOAK_URL/realms/myrealm/account" &&
|
||||||
echo ""
|
echo ""
|
||||||
----
|
----
|
||||||
|
|
||||||
|
NOTE: If you will eventually want more than one server replica, please see the <@links.gettingstarted id="getting-started-scaling-and-tuning" anchor="horizontal-scaling" /> {section}.
|
||||||
|
|
||||||
Remember these URLs as you will need them throughout this {section}. The URL for the account console won't work
|
Remember these URLs as you will need them throughout this {section}. The URL for the account console won't work
|
||||||
right now as you will need to create the realm first.
|
right now as you will need to create the realm first.
|
||||||
|
|
||||||
|
|
|
@ -2,3 +2,4 @@
|
||||||
<#macro operator id anchor="">link:{links_operator_${id}_url}<#if anchor != "">#${anchor}</#if>[{links_operator_${id}_name}]</#macro>
|
<#macro operator id anchor="">link:{links_operator_${id}_url}<#if anchor != "">#${anchor}</#if>[{links_operator_${id}_name}]</#macro>
|
||||||
<#macro ha id anchor="">link:{links_high-availability_${id}_url}<#if anchor != "">#${anchor}</#if>[{links_high-availability_${id}_name}]</#macro>
|
<#macro ha id anchor="">link:{links_high-availability_${id}_url}<#if anchor != "">#${anchor}</#if>[{links_high-availability_${id}_name}]</#macro>
|
||||||
<#macro securingapps id anchor="">link:{links_securing-apps_${id}_url}<#if anchor != "">#${anchor}</#if>[{links_securing-apps_${id}_name}]</#macro>
|
<#macro securingapps id anchor="">link:{links_securing-apps_${id}_url}<#if anchor != "">#${anchor}</#if>[{links_securing-apps_${id}_name}]</#macro>
|
||||||
|
<#macro gettingstarted id anchor="">link:{links_getting-started_${id}_url}<#if anchor != "">#${anchor}</#if>[{links_getting-started_${id}_name}]</#macro>
|
||||||
|
|
Loading…
Reference in a new issue