From 1b645f312aa2e5c0676632b6e7e123502dc3501b Mon Sep 17 00:00:00 2001 From: Mantas Vilčinskas Date: Sat, 21 Dec 2019 21:27:28 +0200 Subject: v4.0 --- config.yml | 97 +++++++++++++++++++--- content/issues/2018-01-17-sending-dms-impacted.md | 4 +- content/issues/2018-05-25-us-east-conn-issues.md | 5 +- content/issues/2018-06-13-maintenance-window.md | 3 +- .../issues/2019-10-04-testing-cstate-functions.md | 10 +++ content/issues/2019-10-08-testing-new-pipeline.md | 13 +++ themes/cstate | 2 +- 7 files changed, 116 insertions(+), 18 deletions(-) create mode 100644 content/issues/2019-10-04-testing-cstate-functions.md create mode 100644 content/issues/2019-10-08-testing-new-pipeline.md diff --git a/config.yml b/config.yml index 74d30b4..3e474b1 100644 --- a/config.yml +++ b/config.yml @@ -83,7 +83,7 @@ defaultContentLanguage: en # What is the hostname or path to the root? # Where is the site hosted? # -# 💥 cState & Hugo don’t support '/' in +# ❗ cState & Hugo don’t support '/' in # production use. It will break RSS # feeds and breaks permalinks since # version 3. If you are just testing, @@ -99,6 +99,35 @@ baseURL: https://cstate.mnts.lt ############################################################ params: + # Before setting up your systems, you need + # to first define at least one category. + # + # Categories are shown in the order that + # you define in this config file. + # + # Categories can have a: + # - name + # - description + # - closed boolean `closed: true` + # That would collapse the category upon first load + # and the user can expand by clicking on the category + # (Requires JavaScript.) + # - untitled boolean `untitled: true` + # This would complerely hide the name of the category. + # This is useful, if you do not want to use categories + # because you need to set an 'Uncategorized' category. + # Or it can be used alongside other categories. + # + # For help, see the wiki: + # https://github.com/cstate/cstate/wiki/Customization + categories: + - name: North Coast + description: The main servers are located here. + closed: true + - name: East Coast + - name: Uncategorized + untitled: true + # These are your systems. Change them to # change the amount of components. # @@ -106,10 +135,15 @@ params: # https://github.com/cstate/cstate/wiki/Customization systems: - name: Gateway + category: North Coast + - name: Backup Gateway + category: East Coast - name: API description: The guts of the application. + category: Uncategorized - name: Media Proxy description: This is the service responsible for serving images, audio, and video. It is reliant on our CDN. + category: Uncategorized # What date format to use? # @@ -129,6 +163,30 @@ params: # BOOLEAN; `true`, `false` useLargeHeaderDesign: false + # Should incident history be separated + # like in an archive view? + # + # Note: This WILL disable pagination. + # + # Default: `yearly` + # STRING; `monthly`, `yearly`, `none` + incidentHistoryFormat: "yearly" + + # Disable dark mode + # + # If your OS and browser support the + # `prefers-color-scheme` media query, + # cState will automatically switch to + # a darker user interface. + # + # cState uses its built-in colors for + # most of the interface to ensure + # a good user experience. + # + # Default: false + # BOOLEAN; `true`, `false` + disableDarkMode: false + # Should we show the logo or the title # of the status page? # @@ -179,20 +237,22 @@ params: incidentPostsPerPage: 10 # Colors throughout cState - # HEX codes without the # + # + # We recommend using HEX + # (with the # symbol). # # Defaults: # - # brand: "0a0c0f" - # ok: "008000" - # disrupted: "cc4400" - # down: "e60000" - # notice: "24478f" - brand: "0a0c0f" - ok: "008000" - disrupted: "cc4400" - down: "e60000" - notice: "24478f" + # brand: "#0a0c0f" + # ok: "#008000" + # disrupted: "#cc4400" + # down: "#e60000" + # notice: "#24478f" + brand: "#0a0c0f" + ok: "#008000" + disrupted: "#cc4400" + down: "#e60000" + notice: "#24478f" # If the status page shows that # there are disruptions or outages @@ -229,3 +289,16 @@ preserveTaxonomyNames: true taxonomies: affected: affected + +outputs: + page: + - html + - json + section: + - html + - json + - rss + home: + - html + - json + - rss diff --git a/content/issues/2018-01-17-sending-dms-impacted.md b/content/issues/2018-01-17-sending-dms-impacted.md index 0af6136..b96139f 100644 --- a/content/issues/2018-01-17-sending-dms-impacted.md +++ b/content/issues/2018-01-17-sending-dms-impacted.md @@ -1,8 +1,8 @@ --- title: Issues Sending DMs -date: 2018-01-17 16:24:00 +date: 2017-12-17 16:24:00 resolved: true -resolvedWhen: 2018-01-17 16:58:00 +resolvedWhen: 2017-12-17 16:58:00 # Possible severity levels: down, disrupted, notice severity: disrupted affected: diff --git a/content/issues/2018-05-25-us-east-conn-issues.md b/content/issues/2018-05-25-us-east-conn-issues.md index 524035b..8d56cf2 100644 --- a/content/issues/2018-05-25-us-east-conn-issues.md +++ b/content/issues/2018-05-25-us-east-conn-issues.md @@ -1,13 +1,14 @@ --- title: US East Connection Issues -date: 2018-05-25 04:13:00 +date: 2018-04-25 04:13:00 resolved: true -resolvedWhen: 2018-05-25 04:13:59 +resolvedWhen: 2018-04-25 04:13:59 # Possible severity levels: down, disrupted, notice severity: down affected: - API - Media Proxy + - Gateway section: issue --- diff --git a/content/issues/2018-06-13-maintenance-window.md b/content/issues/2018-06-13-maintenance-window.md index 6b75810..dae3afb 100644 --- a/content/issues/2018-06-13-maintenance-window.md +++ b/content/issues/2018-06-13-maintenance-window.md @@ -1,7 +1,8 @@ --- title: Maintenance Window date: 2018-06-13 15:54:00 -resolved: false +resolved: true +resolvedWhen: 2018-06-13 16:54:00 # Possible severity levels: down, disrupted, notice severity: disrupted affected: diff --git a/content/issues/2019-10-04-testing-cstate-functions.md b/content/issues/2019-10-04-testing-cstate-functions.md new file mode 100644 index 0000000..efdf7d7 --- /dev/null +++ b/content/issues/2019-10-04-testing-cstate-functions.md @@ -0,0 +1,10 @@ +--- +title: Testing New cState Features +date: 2019-10-04 18:05:00 +informational: true +section: issue +--- + +There is a new feature in cState version 4 that lets you make what are called _informational_ posts. The main difference is that there will be no _Unresolved_ or _Resolved in under a minute_ text on the pages. + +This is essentially a page with a date and title. \ No newline at end of file diff --git a/content/issues/2019-10-08-testing-new-pipeline.md b/content/issues/2019-10-08-testing-new-pipeline.md new file mode 100644 index 0000000..c30358c --- /dev/null +++ b/content/issues/2019-10-08-testing-new-pipeline.md @@ -0,0 +1,13 @@ +--- +title: New Pipeline Rollout +date: 2019-10-05 16:24:00 +resolved: false +resolvedWhen: 2019-10-05 16:58:00 +# Possible severity levels: down, disrupted, notice +severity: disrupted +affected: + - API +section: issue +--- + +There may be disruptions in the rollout. \ No newline at end of file diff --git a/themes/cstate b/themes/cstate index 64a1be9..a8f60c3 160000 --- a/themes/cstate +++ b/themes/cstate @@ -1 +1 @@ -Subproject commit 64a1be9790bfe98e99a12136c1f16684de25de17 +Subproject commit a8f60c31b75fe5a3c91a6595585738523f1cad25 -- cgit v1.2.3-70-g09d2