Skip to content

Commit

Permalink
Add files for managing c3i status
Browse files Browse the repository at this point in the history
  • Loading branch information
accorvin committed Aug 13, 2018
1 parent eb13a53 commit 6f0ea91
Show file tree
Hide file tree
Showing 3 changed files with 58 additions and 0 deletions.
14 changes: 14 additions & 0 deletions Makefile.c3i
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
install:
test -d ./node_modules/md2gslides/bin/ || npm install md2gslides
test -d venv || virtualenv venv
venv/bin/pip install -Ur requirements.txt

buildstatus: install
venv/bin/python finishline \
--scenario statusslides \
--config c3i.conf > foo.md

uploadstatus: buildstatus
./node_modules/md2gslides/bin/md2gslides.js foo.md \
-t "C3I Status" \
-e -a 1sxvqkxvcXhQkoAzsY_Pe-FNHPBIMC9RqPlV0ODc5zD0
39 changes: 39 additions & 0 deletions c3i.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
; The core set of options to Finishline
[options]
; REQUIRED. The URL to the JIRA server
server=https://projects.engineering.redhat.com

; OPTIONAL. A path to a file to be used as references
references=c3i/references.md

; REQUIRED. The JIRA project to report on
project=C3I

; OPTIONAL. Use basic auth instead of Kerberos.
use_basic_auth=true

; OPTIONAL, but required when use_basic_auth is true
; The username to use for basic auth
basic_auth_username=acorvin

; OPTIONAL. Whether to show the attribution for a status update
; Defaults to false.
attribution=true

; OPTIONAL. A comma-separated list of epics to be included in the results
include_epics=C3I-9,C3I-10,C3I-11,C3I-12,C3I-13



; This is a $SCENARIO block
[statusslides]
; REQUIRED. The title for your report
title=C3I Status

; REQUIRED. The path to a template for output.
template=threebean/slides.md

; OPTIONAL. The subtitle for your report
; If the value contains "{DATE}", then today's date
; will be substituted in place of "{DATE}"
subtitle={DATE} -- PnT DevOps
5 changes: 5 additions & 0 deletions templates/c3i/references.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# C3I Resources

- [C3I Design Document](https://docs.google.com/document/d/10FwaF2tSLEx8rjumHWllGPza3F4lo43OKIrSY5XEBy4)
- [C3I Status Dashboard](https://docs.engineering.redhat.com/display/PDT/C3I+Tracking)
- [C3I JIRA Project](https://projects.engineering.redhat.com/projects/C3I/)

0 comments on commit 6f0ea91

Please sign in to comment.