Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
GraceDB Server
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
Michael Coughlin
GraceDB Server
Commits
c33995f9
Commit
c33995f9
authored
5 years ago
by
Alexander Pace
Browse files
Options
Downloads
Patches
Plain Diff
modify entrypoint to accept docker secrets
parent
3da77488
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
docker/entrypoint
+31
-0
31 additions, 0 deletions
docker/entrypoint
with
31 additions
and
0 deletions
docker/entrypoint
+
31
−
0
View file @
c33995f9
#!/bin/bash
# Export the required UUID resource for the lvalert_overseer
export
LVALERT_OVERSEER_RESOURCE
=
${
LVALERT_USER
}
_overseer_
$(
python
-c
'import uuid; print(uuid.uuid4().hex)'
)
# Change the file permissions and ownership on /app/db_data:
chown
gracedb:www-data /app/db_data
chmod
755 /app/db_data
## PGA: 2019-10-15: use certs from secrets for Shibboleth SP
SHIB_SP_CERT
=
/run/secrets/gracedb_ligo_org_saml_cert
SHIB_SP_KEY
=
/run/secrets/gracedb_ligo_org_saml_privkey
if
[[
-f
$SHIB_SP_CERT
&&
-f
$SHIB_SP_KEY
]]
then
echo
"Using Shibboleth Cert from docker secrets over the image one"
cp
-f
$SHIB_SP_CERT
/etc/shibboleth/sp-cert.pem
cp
-f
$SHIB_SP_KEY
/etc/shibboleth/sp-key.pem
chown
_shibd:_shibd /etc/shibboleth/sp-
{
cert,key
}
.pem
chmod
0600 /etc/shibboleth/sp-key.pem
fi
## PGA 2019-10-16: use secrets for sensitive environment variables
LIST
=
"aws_ses_access_key_id
aws_ses_secret_access_key
django_db_password
django_secret_key
django_twilio_account_sid
django_twilio_auth_token
lvalert_password"
for
SECRET
in
$LIST
do
VARNAME
=
$(
tr
[
:lower:]
[
:upper:]
<<<
$SECRET
)
[
-f
/run/secrets/
$SECRET
]
&&
export
$VARNAME
=
"'
$(
< /run/secrets/
$SECRET
)
'"
done
exec
"
$@
"
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