Regions |
{% if configcontext.regions.all %}
{% for region in configcontext.regions.all %}
- {{ region }}
{% endfor %}
{% else %}
None
{% endif %}
|
Sites |
{% if configcontext.sites.all %}
{% for site in configcontext.sites.all %}
- {{ site }}
{% endfor %}
{% else %}
None
{% endif %}
|
Roles |
{% if configcontext.roles.all %}
{% for role in configcontext.roles.all %}
- {{ role }}
{% endfor %}
{% else %}
None
{% endif %}
|
Platforms |
{% if configcontext.platforms.all %}
{% for platform in configcontext.platforms.all %}
- {{ platform }}
{% endfor %}
{% else %}
None
{% endif %}
|
Cluster Groups |
{% if configcontext.cluster_groups.all %}
{% else %}
None
{% endif %}
|
Clusters |
{% if configcontext.clusters.all %}
{% for cluster in configcontext.clusters.all %}
- {{ cluster }}
{% endfor %}
{% else %}
None
{% endif %}
|
Tenant Groups |
{% if configcontext.tenant_groups.all %}
{% else %}
None
{% endif %}
|
Tenants |
{% if configcontext.tenants.all %}
{% for tenant in configcontext.tenants.all %}
- {{ tenant }}
{% endfor %}
{% else %}
None
{% endif %}
|
Tags |
{% if configcontext.tags.all %}
{% for tag in configcontext.tags.all %}
- {{ tag }}
{% endfor %}
{% else %}
None
{% endif %}
|