Skip to content

Commit

Permalink
add config for the CPCOLLAB project
Browse files Browse the repository at this point in the history
  • Loading branch information
mikebonnet committed Aug 31, 2018
1 parent 852ee7a commit c479477
Show file tree
Hide file tree
Showing 3 changed files with 57 additions and 0 deletions.
14 changes: 14 additions & 0 deletions Makefile.cpcollab
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 cpcollab.conf > foo.md

uploadstatus: buildstatus
./node_modules/md2gslides/bin/md2gslides.js foo.md \
-t "DevOps Cross-pillar Collaboration Status" \
-e -a 15bXAWuHOQiy4nTfTvztfVgXrO6vHL9XuVuP_4YKjEBo
39 changes: 39 additions & 0 deletions cpcollab.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=cpcollab/references.md

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

; 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=mikeb

; 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=CPCOLLAB-2,CPCOLLAB-3,CPCOLLAB-5,CPCOLLAB-6,CPCOLLAB-7,CPCOLLAB-8,CPCOLLAB-10,CPCOLLAB-11,CPCOLLAB-16



; This is a $SCENARIO block
[statusslides]
; REQUIRED. The title for your report
title=DevOps Cross-pillar Collaboration 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
4 changes: 4 additions & 0 deletions templates/cpcollab/references.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# DevOps Cross-pillar Collaboration Resources

- [CPCOLLAB JIRA Board](https://projects.engineering.redhat.com/secure/RapidBoard.jspa?projectKey=CPCOLLAB&rapidView=2380)
- [DevOps Training and Demos Home](https://docs.engineering.redhat.com/display/HAT/PnT+DevOps+Training+and+Demos+Home)

0 comments on commit c479477

Please sign in to comment.