Skip to content

notjustanyjoe/openshift-cdash

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Create a skeleton configuration using the OC commandline tool. The resulting configurations will need to be edited prior to use.

mkdir src
git clone https://github.com/Kitware/CDash.git src/CDash

oc new-app src/CDash/. \
    --name ecp-cdash \
    -e CDASH_ROOT_ADMIN_PASS=secret \
    -e CDASH_STATIC_USERS="REPLACEME" \
    --output=yaml > openshift/cdash_config.yaml
oc new-app mysql \
    --name ecp-cdash-db \
    -e MYSQL_ALLOW_EMPTY_PASSWORD=yes \
    -e MYSQL_ROOT_PASSWORD= \
    -e MYSQL_DATABASE=cdash \
    -e MYSQL_ROOT_HOST='%' \
    --output=yaml > openshift/db_config.yaml

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Shell 89.3%
  • Dockerfile 10.7%