.github | ||
cc-metric-store | ||
data | ||
templates | ||
.gitignore | ||
LICENSE | ||
README.md | ||
setupDev.sh | ||
startDev.sh |
cc-docker
Please note: This repo is under ongoing construction
This is a docker-compose
setup which provides a quickly started environment for ClusterCockpit development and testing, using the modules cc-backend
(GoLang) and cc-frontend
(Svelte). A number of services is readily available as docker container (nats, cc-metric-store, InfluxDB, LDAP), or easily added by manual configuration (MySQL).
It includes the following containers:
- nats (Default)
- cc-metric-store (Default)
- influxdb (Optional)
- openldap (Default)
- mysql (Optional, Manual)
- phpmyadmin (Optional, Manual)
The setup comes with fixture data for a Job archive, cc-metric-store checkpoints, InfluxDB, MySQL, and a LDAP user directory.
Known Issues
docker-compose
installed on Ubuntu (18.04, 20.04) viaapt-get
can not correctly parsedocker-compose.yml
due to version differences. Install latest version ofdocker-compose
from https://docs.docker.com/compose/install/ instead.- You need to ensure that no other web server is running on ports 8080 (cc-backend), 8081 (phpmyadmin), 8084 (cc-metric-store), 8086 (nfluxDB), 4222 and 8222 (Nats), or 3306 (MySQL). If one or more ports are already in use, you habe to adapt the related config accordingly.
- Existing VPN connections sometimes cause problems with docker. If
docker-compose
does not start up correctly, try disabling any active VPN connection. Refer to https://stackoverflow.com/questions/45692255/how-make-openvpn-work-with-docker for further information.
Configuration Templates
Located in ./templates
docker-compose.yml.ccms
: Docker-Compose file to setup cc-metric-store metric database and LDAP containers (Default). Used insetupDev.sh
.docker-compose.yml.influxdb
: Docker-Compose file to setup influxDB metric database and LDAP containers. Used insetupDev.sh
.docker-compose.yml.mysql
: Docker-Compose configuration template if additional MySQL and phpmyadmin containers are desired.env.ccms
: Environment variables for setup with cc-metric-store metric database and LDAP containers (Default). Used insetupDev.sh
.env.influxdb
: Environment variables for setup with influxDB metric database and LDAP containers. Used insetupDev.sh
.env.mysql
: Additional environment variables required if additional MySQL and phpmyadmin containers are desired.
Setup
-
$ ./setupDev.sh [help|ccms|influxdb]
: NOTICE The script will download files of a total size of 338MB (mostly for the InfluxDB data).help
: Displays help.ccms
: Copies according docker-compose.yml and env-file to root directory, downloads cc-metric-store checkpoint data, and builds containers.influxdb
: Copies according docker-compose.yml and env-file to root directory, downloads influxDB data, and builds containers.
-
After that from the root of the cc-docker sandbox you can start up the containers and launch cc-backend with:
$ ./startDev.sh
-
By default, you can access cc-backend in your browser at
http://localhost:8080
. You can shut down the cc-backend server by pressingCTRL-C
, remember to also shut down all containers viadocker-compose down
afterwards.
Usage
Credentials for the preconfigured demo user are:
- User:
demo
- Password:
AdminDev
You can also login as regular user using any credential in the LDAP user directory at ./data/ldap/users.ldif
.
The job archive with 1867 jobs originates from the second half of 2020. Roughly 2700 jobs from the first week of 2021 are loaded with data from InfluxDB. Some views of ClusterCockpit (e.g. the Users view) show the last week or month. To show some data there you have to set the filter to time periods with jobs (August 2020 to January 2021).