Page Menu
Home
DevCentral
Search
Configure Global Search
Log In
Files
F3770090
notifications.sls
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
3 KB
Referenced Files
None
Subscribers
None
notifications.sls
View Options
# -------------------------------------------------------------
# Salt — Provision Docker engine
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# Project: Nasqueron
# Created: 2016-01-23
# License: Trivial work, not eligible to copyright
# -------------------------------------------------------------
{%
set
has_selinux
=
salt
[
'grains.get'
](
'selinux:enabled'
,
False
)
%}
{%
for
instance
,
container
in
pillar
[
'docker_containers'
][
'notifications'
]
.items
()
%}
# -------------------------------------------------------------
# Storage directory
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
/srv/
{{
instance
}}
/storage
:
file.directory
:
-
user
:
431
-
group
:
433
-
makedirs
:
True
{%
for
subdir
in
[
"sessions"
,
"views"
,
"cache"
]
%}
/srv/
{{
instance
}}
/storage/framework/
{{
subdir
}}
:
file.directory
:
-
user
:
431
-
group
:
433
-
makedirs
:
True
{%
endfor
%}
/srv/
{{
instance
}}
/storage/app/credentials.json
:
file.managed
:
-
user
:
431
-
group
:
433
-
mode
:
400
-
makedirs
:
True
-
show_changes
:
False
-
contents
:
|
{{
salt
[
'notifications.get_credentials'
]()
|
json
}}
/srv/
{{
instance
}}
/storage/app/DockerHubTriggers.json
:
file.managed
:
-
user
:
431
-
group
:
433
-
mode
:
400
-
show_changes
:
False
-
contents
:
|
{{
salt
[
'notifications.get_dockerhub_triggers'
]()
|
json
}}
{%
for
folder
,
configs
in
salt
[
'pillar.get'
](
"notifications_configuration"
,
{})
.items
()
%}
{%
for
config_file
,
config
in
configs.items
()
%}
/srv/
{{
instance
}}
/storage/app/
{{
folder
}}
/
{{
config_file
}}
.json
:
file.managed
:
-
user
:
431
-
group
:
433
-
makedirs
:
True
-
contents
:
|
{{
config
|
json
}}
{%
endfor
%}
{%
endfor
%}
{%
if
has_selinux
%}
selinux_context_notifications_data_
{{
instance
}}
:
selinux.fcontext_policy_present
:
-
name
:
/srv/
{{
instance
}}
/storage
-
sel_type
:
container_file_t
selinux_context_notifications_data_applied_
{{
instance
}}
:
selinux.fcontext_policy_applied
:
-
name
:
/srv/
{{
instance
}}
/storage
{%
endif
%}
# -------------------------------------------------------------
# Container
#
# Image: nasqueron/notifications
# Description: Listen to webhooks, fire notifications to
# the broker. Used for CI / IRC notifications.
# Services used: RabbitMQ broker (white-rabbit)
# Docker volume (/srv/notifications/storage)
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
{%
if
"network"
in
container
%}
{%
set
broker
=
container
[
'broker'
]
%}
{%
else
%}
{%
set
broker
=
"mq"
%}
{%
endif
%}
{{
instance
}}
:
docker_container.running
:
-
detach
:
True
-
interactive
:
True
-
image
:
nasqueron/notifications
-
binds
:
/srv/
{{
instance
}}
/storage:/var/wwwroot/default/storage
{%
if
"network"
in
container
%}
-
networks
:
-
{{
container
[
'network'
]
}}
{%
else
%}
-
links
:
-
{{
container
[
'broker_link'
]
}}
:mq
{%
endif
%}
-
environment
:
-
BROKER_HOST
:
{{
broker
}}
-
BROKER_USERNAME
:
{{
salt
[
'credentials.get_username'
](
container
[
'credentials'
][
'broker'
])
}}
-
BROKER_PASSWORD
:
{{
salt
[
'credentials.get_password'
](
container
[
'credentials'
][
'broker'
])
}}
-
BROKER_VHOST
:
dev
{%
if
"mailgun"
in
container
[
"credentials"
]
%}
-
MAILGUN_DOMAIN
:
{{
salt
[
'credentials.get_username'
](
container
[
'credentials'
][
'mailgun'
])
}}
-
MAILGUN_APIKEY
:
{{
salt
[
'credentials.get_password'
](
container
[
'credentials'
][
'mailgun'
])
}}
{%
endif
%}
-
SENTRY_DSN
:
{{
salt
[
'credentials.get_sentry_dsn'
](
container
[
"sentry"
])
}}
-
SENTRY_TRACES_SAMPLE_RATE
:
1.0
-
SENTRY_ENVIRONMENT
:
{{
container
[
"sentry"
]
.get
(
"environment"
,
"production"
)
}}
-
ports
:
-
80
-
port_bindings
:
-
{{
container
[
'app_port'
]
}}
:80
{%
endfor
%}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Mon, Nov 25, 19:02 (8 h, 41 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
2260787
Default Alt Text
notifications.sls (3 KB)
Attached To
Mode
rOPS Nasqueron Operations
Attached
Detach File
Event Timeline
Log In to Comment