159cce3c4a
The steps needed to upgrade the undercloud were specified in two different files. This commit updates the steps to cover O to P from commit 496223 in the 'Undercloud Installation' section and reuses that doc file for the 'Upgrading to a Next Major Release'. As an addition, a new class 'otop' has been added to include specific documentation sections when upgrading from Ocata to Pike. Change-Id: I9097ca11a95f94c5eaf580fb8a82b3173d606a5d
66 lines
4.0 KiB
HTML
66 lines
4.0 KiB
HTML
{% extends "!layout.html" %}
|
|
|
|
{% set script_files = script_files + ["_static/cookies.js"] %}
|
|
{% set script_files = script_files + ["_static/expandable.js"] %}
|
|
{% set script_files = script_files + ["_static/admonition_selector.js"] %}
|
|
{% set script_files = script_files + ["_static/jquery.scrollTo.js"] %}
|
|
{% set script_files = script_files + ["_static/jquery.nav.js"] %}
|
|
{% set script_files = script_files + ["_static/menu.js"] %}
|
|
|
|
{% set css_files = css_files + ['_static/custom.css'] %}
|
|
|
|
{% block otherversions %}
|
|
<div id="admonition_selector">
|
|
<span class="trigger">Limit Environment Specific Content</span>
|
|
|
|
<div class="content">
|
|
<span class="title">Operating Systems</span>
|
|
<ul>
|
|
<li><input type="checkbox" id="centos" checked="checked"><label for="centos" title="Step that should only be run when using CentOS.">CentOS</label></li>
|
|
<li><input type="checkbox" id="rhel" checked="checked"><label for="rhel" title="Step that should only be run when using RHEL.">RHEL</label></li>
|
|
</ul>
|
|
|
|
<span class="title">Branches</span>
|
|
<ul>
|
|
<li><input type="checkbox" id="stable" checked=""><label for="stable" title="Step that should only be run when choosing to use components from their stable branches rather than using packages/source based on current master.">Install from stable branch</label></li>
|
|
<li><input type="checkbox" id="newton" checked=""><label for="newton" title="Step that should only be run when installing from the Newton stable branch.">Install from Newton branch</label></li>
|
|
<li><input type="checkbox" id="ocata" checked=""><label for="ocata" title="Step that should only be run when installing from the Ocata stable branch.">Install from Ocata branch</label></li>
|
|
</ul>
|
|
|
|
<span class="title">RHEL Registration Types</span>
|
|
<ul>
|
|
<li><input type="checkbox" id="portal" checked="checked"><label for="portal" title="Step that should only be run when registering to the Red Hat Portal.">Portal</label></li>
|
|
<li><input type="checkbox" id="satellite" checked="checked"><label for="satellite" title="Step that should only be run when registering to Red Hat Satellite.">Satellite</label></li>
|
|
</ul>
|
|
|
|
<span class="title">Environments</span>
|
|
<ul>
|
|
<li><input type="checkbox" id="baremetal" checked="checked"><label for="baremetal" title="Step that should only be run when deploying to baremetal.">Baremetal</label></li>
|
|
<li><input type="checkbox" id="virtual" checked="checked"><label for="virtual" title="Step that should only be run when deploying to virtual machines.">Virtual</label></li>
|
|
</ul>
|
|
|
|
<span class="title">Features</span>
|
|
<ul>
|
|
<li><input type="checkbox" id="validations" checked="checked"><label for="validations" title="Step that should only be run when deploying with validations.">Validations</label></li>
|
|
<li><input type="checkbox" id="optional" checked="checked"><label for="optional" title="Step that is optional. A deployment can be done without these steps, but they may provide useful additional functionality.">Optional</label></li>
|
|
</ul>
|
|
|
|
<span class="title">Additional Overcloud Roles</span>
|
|
<ul>
|
|
<li><input type="checkbox" id="ceph" checked="checked"><label for="ceph" title="Step that should only be run when deploying Ceph for use by the Overcloud.">Ceph</label></li>
|
|
</ul>
|
|
|
|
<span class="title">Upgrade Version</span>
|
|
<ul>
|
|
<li><input type="checkbox" id="mton" checked="checked"><label for="mton" title="Step that should only be run for upgrading from Mitaka to Newton">Upgrading Mitaka to Newton</label></li>
|
|
<li><input type="checkbox" id="ntoo" checked="checked"><label for="ntoo" title="Step that should only be run for upgrading from Newton to Ocata">Upgrading Newton to Ocata</label></li>
|
|
<li><input type="checkbox" id="otop" checked="checked"><label for="otop" title="Step that should only be run for upgrading from Ocata to Pike">Upgrading Ocata to Pike</label></li>
|
|
</ul>
|
|
|
|
|
|
</div>
|
|
</div>
|
|
|
|
{{ super() }}
|
|
{% endblock %}
|