Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
open-build-service
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
obs
open-build-service
Merge requests
!17
Disable InfluxDB by default but allow configuring it through envvars
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Disable InfluxDB by default but allow configuring it through envvars
disable-influxdb
into
collabora/staging
Overview
0
Commits
1
Pipelines
2
Changes
2
Merged
Andrej Shadura
requested to merge
disable-influxdb
into
collabora/staging
3 years ago
Overview
0
Commits
1
Pipelines
2
Changes
2
Expand
0
0
Merge request reports
Compare
collabora/staging
version 1
c0ab349b
3 years ago
collabora/staging (base)
and
latest version
latest version
c743b6a3
1 commit,
3 years ago
version 1
c0ab349b
1 commit,
3 years ago
2 files
+
6
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
docker/configure-app.sh
+
5
−
0
Options
@@ -37,6 +37,11 @@ then
sed
-i
"s/memcached_host: .*/memcached_host:
$OBS_MEMCACHE_HOST
/g"
config/options.yml
fi
if
[
!
-z
"
$OBS_INFLUXDB_HOST
"
]
then
sed
-i
"s/influxdb_hosts:
\[
]/influxdb_hosts: [
\"
$OBS_INFLUXDB_HOST
\"
]/g"
config/options.yml
fi
if
[
!
-z
"
$OBS_LOG_LEVEL
"
]
then
sed
-i
"s/config.log_level = .*/config.log_level = :
$OBS_LOG_LEVEL
/g"
config/environments/production.rb
Loading