mirror of
https://github.com/ClusterCockpit/cc-docker.git
synced 2024-11-10 10:17:26 +01:00
Change InfluxDB Retention.
This commit is contained in:
parent
57fec9a0b4
commit
255cd59ee6
@ -12,6 +12,7 @@ if [ $# -gt 0 ]; then
|
|||||||
if [ $1 == "dev" ]; then
|
if [ $1 == "dev" ]; then
|
||||||
# 101 is the uid and gid of the user and group www in the cc-php container running php-fpm.
|
# 101 is the uid and gid of the user and group www in the cc-php container running php-fpm.
|
||||||
# For a demo with no new jobs it is enough to give www read permissions on that directory.
|
# For a demo with no new jobs it is enough to give www read permissions on that directory.
|
||||||
|
echo "This script needs to chown the job-archive directory so that the application can write to it:"
|
||||||
sudo chown -R 101:101 ./job-archive
|
sudo chown -R 101:101 ./job-archive
|
||||||
|
|
||||||
mkdir -p influxdb/data
|
mkdir -p influxdb/data
|
||||||
@ -19,8 +20,8 @@ if [ $# -gt 0 ]; then
|
|||||||
cd influxdb/data
|
cd influxdb/data
|
||||||
tar xJf ../../influxdbv2-data.tar.xz
|
tar xJf ../../influxdbv2-data.tar.xz
|
||||||
rm ../../influxdbv2-data.tar.xz
|
rm ../../influxdbv2-data.tar.xz
|
||||||
|
|
||||||
cd ../..
|
cd ../..
|
||||||
|
|
||||||
# If development: Use SQL source including INFLUX-Job Metadata instead
|
# If development: Use SQL source including INFLUX-Job Metadata instead
|
||||||
cp ./sql-source/ClusterCockpit-dev.sql ./sql-init/ClusterCockpit.sql
|
cp ./sql-source/ClusterCockpit-dev.sql ./sql-init/ClusterCockpit.sql
|
||||||
fi
|
fi
|
||||||
|
@ -13,7 +13,7 @@ services:
|
|||||||
DOCKER_INFLUXDB_INIT_PASSWORD: ${INFLUXDB_PASSWORD}
|
DOCKER_INFLUXDB_INIT_PASSWORD: ${INFLUXDB_PASSWORD}
|
||||||
DOCKER_INFLUXDB_INIT_ORG: ClusterCockpit
|
DOCKER_INFLUXDB_INIT_ORG: ClusterCockpit
|
||||||
DOCKER_INFLUXDB_INIT_BUCKET: ClusterCockpit
|
DOCKER_INFLUXDB_INIT_BUCKET: ClusterCockpit
|
||||||
DOCKER_INFLUXDB_INIT_RETENTION: 2w
|
DOCKER_INFLUXDB_INIT_RETENTION: 2y
|
||||||
DOCKER_INFLUXDB_INIT_ADMIN_TOKEN: ${INFLUXDB_ADMIN_TOKEN}
|
DOCKER_INFLUXDB_INIT_ADMIN_TOKEN: ${INFLUXDB_ADMIN_TOKEN}
|
||||||
ports:
|
ports:
|
||||||
- "127.0.0.1:${INFLUXDB_PORT}:8086"
|
- "127.0.0.1:${INFLUXDB_PORT}:8086"
|
||||||
|
Loading…
Reference in New Issue
Block a user