
Using puppet modules from source is no longer required. However, it's still useful to document how to do so for those that want to. This creates a new source admonition that can be used to document such things. Change-Id: I5393bbfca51ebe97065995123a3d59a8719aaa81
52 lines
2.5 KiB
HTML
52 lines
2.5 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 sidebarsearch %}
|
|
<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">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">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">Development options</span>
|
|
<ul>
|
|
<li><input type="checkbox" id="source" checked=""><label for="source"
|
|
title="Step that should only be run when choosing to use some components directly from their git source code repositories instead of packages.">Installing from source/git</label></li>
|
|
</ul>
|
|
|
|
|
|
</div>
|
|
</div>
|
|
|
|
{{ super() }}
|
|
{% endblock %}
|