Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
H
hivemind
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor 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
hive
hivemind
Commits
efebd247
Verified
Commit
efebd247
authored
2 months ago
by
Konrad Botor
Browse files
Options
Downloads
Patches
Plain Diff
Empty arguments are no longer passed to Hive
parent
878c8168
No related branches found
No related tags found
1 merge request
!844
Empty arguments are no longer passed to Hive
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
docker/docker_entrypoint.sh
+10
-8
10 additions, 8 deletions
docker/docker_entrypoint.sh
with
10 additions
and
8 deletions
docker/docker_entrypoint.sh
+
10
−
8
View file @
efebd247
...
...
@@ -13,7 +13,7 @@ function log () {
echo
"[Entrypoint]
$timestamp
INFO [
$category
] (main)
$message
"
}
log
"global"
"Parameters passed directly to Hivemind docker entrypoint:
$*
"
log
"global"
"Parameters passed directly to Hivemind docker entrypoint:
'
$*
'
"
SCRIPT_DIR
=
"
$(
realpath
"
$(
dirname
"
${
BASH_SOURCE
[0]
}
"
)
"
)
"
...
...
@@ -64,21 +64,22 @@ while [ $# -gt 0 ]; do
WITH_REPTRACKER
=
1
;;
*
)
HIVEMIND_ARGS+
=(
"
$1
"
)
arg
=
$1
[[
-n
"
${
arg
}
"
]]
&&
HIVEMIND_ARGS+
=(
"
${
arg
}
"
)
esac
shift
done
log
"global"
"Collected Hivemind arguments:
${
HIVEMIND_ARGS
[*]
}
"
log
"global"
"Using PostgreSQL instance:
$POSTGRES_URL
"
log
"global"
"Using PostgreSQL Admin URL:
$POSTGRES_ADMIN_URL
"
log
"global"
"Collected Hivemind arguments:
'
${
HIVEMIND_ARGS
[*]
}
'
"
log
"global"
"Using PostgreSQL instance:
'
$POSTGRES_URL
'
"
log
"global"
"Using PostgreSQL Admin URL:
'
$POSTGRES_ADMIN_URL
'
"
run_hive_no_exec
()
{
local
db_url
=
${
1
:-
"
${
POSTGRES_URL
}
"
}
# shellcheck source=/dev/null
source
/home/hivemind/.hivemind-venv/bin/activate
if
[[
-n
"
$LOG_PATH
"
]]
;
then
log
"run_hive"
"Starting Hivemind with log
$LOG_PATH
"
log
"run_hive"
"Starting Hivemind with log
'
$LOG_PATH
'
"
hive
"
${
HIVEMIND_ARGS
[@]
}
"
--database-url
=
"
${
db_url
}
"
>
>(
tee
-i
"
$LOG_PATH
"
)
2>&1
else
log
"run_hive"
"Starting Hivemind..."
...
...
@@ -91,7 +92,7 @@ run_hive() {
# shellcheck source=/dev/null
source
/home/hivemind/.hivemind-venv/bin/activate
if
[[
-n
"
$LOG_PATH
"
]]
;
then
log
"run_hive"
"Starting Hivemind with log
$LOG_PATH
"
log
"run_hive"
"Starting Hivemind with log
'
$LOG_PATH
'
"
if
[[
"
$POSTGREST_SERVER
"
=
1
]]
;
then
echo
"Running postgrest setup..."
exec
"
$SCRIPT_DIR
/app/ci/start_postgrest.sh"
"
${
HIVEMIND_ARGS
[@]
}
"
--postgres-url
=
"
${
POSTGRES_URL
}
"
>
>(
tee
-i
"
$LOG_PATH
"
)
2>&1
...
...
@@ -152,6 +153,7 @@ uninstall_app() {
}
log
"global"
"Command: '
${
COMMAND
}
'"
case
"
$COMMAND
"
in
setup
)
setup
...
...
@@ -180,7 +182,7 @@ case "$COMMAND" in
POSTGREST_SERVER
=
1
# HIVEMIND_ARGS=($(for i in "${HIVEMIND_ARGS[@]}"; do [[ "$i" != "postgrest-server" ]] && echo "$i"; done))
HIVEMIND_ARGS
=(
"
${
HIVEMIND_ARGS
[@]
:1
}
"
)
log
"global"
"Running Hivemind with arguments
${
HIVEMIND_ARGS
[*]
}
"
log
"global"
"Running Hivemind with arguments
'
${
HIVEMIND_ARGS
[*]
}
'
"
run_hive
;;
*
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment