mirror of
https://github.com/puppetlabs/infinitory.git
synced 2026-01-26 02:08:41 -05:00
The term “service” is confusing because of the related Puppet resource type. “Application” makes it clear that this doesn't track running processes.
10 lines
360 B
HTML
10 lines
360 B
HTML
{% extends "layout.html" %}
|
|
{% block title %}Puppet SRE Infrastructure{% endblock %}
|
|
{% block body %}
|
|
<h1>Puppet SRE Infrastructure</h1>
|
|
<ul>
|
|
<li><a href="nodes/index.html">Node inventory</a></li>
|
|
<li><a href="roles/index.html">Role inventory</a></li>
|
|
<li><a href="applications/index.html">Application inventory</a></li>
|
|
</ul>
|
|
{% endblock %}
|