spearhead-statuskit/site/archetypes/incidents.md
steveoh 8ff8e97da5 update for hugo 0.24
From Hugo 0.24 this must be provided in the archetype file itself, if needed. Example:
---
title: "{{ replace .TranslationBaseName "-" " " | title }}"
date: {{ .Date }}
draft: true
---
2017-06-29 11:01:47 -06:00

642 B

+++

default attributes for an incident.

title = "{{ replace .TranslationBaseName "-" " " | title }}" date = {{ .Date }}

severity: represents the impact of

your system due to the current incident.

This is the list of supported severities:

- under-maintenance

- degraded-performance

- partial-outage

- major-outage

severity = "degraded-performance"

affectedsystems: is a list of systems affected

by the incident.

Example:

affectedsystems = ["API", "Build servers"]

affectedsystems = ["API", "Build servers"]

resolved: marks an incident as resolved.

It can be either true or false.

resolved = false +++