Page Menu
Home
DevCentral
Search
Configure Global Search
Log In
Files
F3770074
snuba.sls
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
snuba.sls
View Options
# -------------------------------------------------------------
# Salt — Provision Docker engine
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# Project: Nasqueron
# License: Trivial work, not eligible to copyright
# Notes: Environment follows getsentry/self-hosted
# -------------------------------------------------------------
{%
for
instance
,
container
in
pillar
[
'docker_containers'
][
'snuba'
]
.items
()
%}
{%
set
is_api
=
container.get
(
"api"
,
False
)
%}
# -------------------------------------------------------------
# Container
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
{{
instance
}}
:
docker_container.running
:
-
detach
:
True
-
interactive
:
True
-
image
:
getsentry/snuba:nightly
{%
if
"command"
in
container
%}
-
command
:
{{
container
[
"command"
]
}}
{%
endif
%}
-
environment
:
SNUBA_SETTINGS
:
self_hosted
CLICKHOUSE_HOST
:
{{
container
[
"services"
][
"clickhouse"
]
}}
DEFAULT_BROKERS
:
{{
container
[
"services"
][
"broker"
]
}}
REDIS_HOST
:
{{
container
[
"services"
][
"redis"
]
}}
UWSGI_MAX_REQUESTS
:
10000
UWSGI_DISABLE_LOGGING
:
"true"
# Leaving the value empty to just pass whatever is set
# on the host system (or in the .env file)
SENTRY_EVENT_RETENTION_DAYS
:
-
networks
:
-
{{
container
[
"network"
]
}}
# -------------------------------------------------------------
# Bootstrap / migration
#
# docker exec doesn't follow the entrypoint, so full command
# is needed.
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
{%
if
is_api
%}
Boostrap and migrate Snuba -
{{
instance
}}
:
cmd.run
:
-
name
:
|
docker exec
{{
instance
}}
snuba bootstrap --no-migrate --force
docker exec
{{
instance
}}
snuba migrations migrate --force
{%
endif
%}
{%
endfor
%}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Mon, Nov 25, 18:59 (10 h, 25 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
2260778
Default Alt Text
snuba.sls (1 KB)
Attached To
Mode
rOPS Nasqueron Operations
Attached
Detach File
Event Timeline
Log In to Comment