-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add initial skeleton of full install guide
jsc#PED-2842
- Loading branch information
Showing
4 changed files
with
146 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
## ---------------------------- | ||
## Doc Config File for SUSE Linux Enterprise High Availability Extension | ||
## Full installation guide | ||
## ---------------------------- | ||
## | ||
## Basics | ||
MAIN="MAIN.SLEHA.xml" | ||
ROOTID=book-full-install | ||
|
||
## Profiling | ||
PROFOS="sles" | ||
PROFCONDITION="suse-product" | ||
|
||
## stylesheet location | ||
STYLEROOT="/usr/share/xml/docbook/stylesheet/suse2022-ns" | ||
FALLBACK_STYLEROOT="/usr/share/xml/docbook/stylesheet/suse-ns" | ||
|
||
## enable sourcing | ||
export DOCCONF=$BASH_SOURCE | ||
|
||
##do not show remarks directly in the (PDF) text | ||
#XSLTPARAM="--param use.xep.annotate.pdf=0" | ||
|
||
### Sort the glossary | ||
XSLTPARAM="--param glossary.sort=1" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<?xml-stylesheet href="urn:x-suse:xslt:profiling:docbook50-profile.xsl" | ||
type="text/xml" | ||
title="Profiling step"?> | ||
<!DOCTYPE book | ||
[ | ||
<!ENTITY % entities SYSTEM "generic-entities.ent"> | ||
%entities; | ||
]> | ||
|
||
<!-- ##################################################################### --> | ||
<!-- SLEHA Full Installation Guide --> | ||
<!-- ##################################################################### --> | ||
<?provo dirname="install/"?> | ||
<book version="5.0" xml:id="book-full-install" xml:lang="en" | ||
xmlns="http://docbook.org/ns/docbook" | ||
xmlns:dm="urn:x-suse:ns:docmanager" | ||
xmlns:xi="http://www.w3.org/2001/XInclude" | ||
xmlns:xlink="http://www.w3.org/1999/xlink"> | ||
<info> | ||
<title>Installing High Availability clusters for critical workloads</title> | ||
<productname>&productname;</productname> | ||
<productname role="abbrev">&productnameshort;</productname> | ||
<productnumber>&productnumber;</productnumber> | ||
<date> | ||
<?dbtimestamp format="B d, Y"?> | ||
</date> | ||
<xi:include href="common_copyright_gfdl.xml"/> | ||
<abstract> | ||
<para> | ||
TBD | ||
</para> | ||
</abstract> | ||
<dm:docmanager xmlns:dm="urn:x-suse:ns:docmanager"> | ||
<dm:bugtracker/> | ||
<dm:translation>yes</dm:translation> | ||
</dm:docmanager> | ||
</info> | ||
<xi:include href="ha_install_intro.xml"/> | ||
|
||
<!-- ===================================================================== --> | ||
<!-- Part: Planning --> | ||
<!-- ===================================================================== --> | ||
<part xml:id="part-plan"> | ||
<title>Planning for deployment</title> | ||
<info/> | ||
<xi:include href="ha_concepts.xml"/> | ||
<xi:include href="ha_requirements.xml"/> | ||
</part> | ||
|
||
<!-- ===================================================================== --> | ||
<!-- Part: Installing nodes --> | ||
<!-- ===================================================================== --> | ||
<part xml:id="part-install"> | ||
<title>Installing HA nodes</title> | ||
<info/> | ||
<xi:include href="ha_install.xml"/> | ||
<xi:include href="ha_yast_cluster.xml"/> | ||
</part> | ||
|
||
<!-- ===================================================================== --> | ||
<!-- Part: Additional configuration --> | ||
<!-- ===================================================================== --> | ||
<part xml:id="part-additional-config"> | ||
<title>Additional configuration</title> | ||
<info/> | ||
|
||
</part> | ||
|
||
<!-- ===================================================================== --> | ||
<!-- Part: Testing --> | ||
<!-- ===================================================================== --> | ||
<part xml:id="part-test"> | ||
<title>Testing the setup</title> | ||
<info/> | ||
|
||
</part> | ||
|
||
<!-- ===================================================================== --> | ||
<!-- Part: Appendix --> | ||
<!-- ===================================================================== | ||
<part xml:id="part-appendix"> | ||
<title>Appendix</title> | ||
</part>--> | ||
|
||
<xi:include href="common_legal.xml"/> | ||
</book> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE preface | ||
[ | ||
<!ENTITY % entities SYSTEM "generic-entities.ent"> | ||
%entities; | ||
]> | ||
|
||
<preface version="5.0" xml:id="pre-ha-install" | ||
xmlns="http://docbook.org/ns/docbook" | ||
xmlns:xi="http://www.w3.org/2001/XInclude" | ||
xmlns:xlink="http://www.w3.org/1999/xlink"> | ||
<title>Preface</title> | ||
<info> | ||
<dm:docmanager xmlns:dm="urn:x-suse:ns:docmanager"> | ||
<dm:maintainer/> | ||
<dm:status>editing</dm:status> | ||
<dm:deadline/> | ||
<dm:priority/> | ||
<dm:translation>yes</dm:translation> | ||
<dm:languages/> | ||
<dm:release/> | ||
<dm:repository/> | ||
</dm:docmanager> | ||
|
||
</info> | ||
<xi:include href="common_intro_available_doc.xml"/> | ||
<xi:include href="common_intro_feedback.xml"/> | ||
<xi:include href="common_intro_convention_ha.xml"/> | ||
<xi:include href="common_intro_support.xml"/> | ||
</preface> |