Page Menu
Home
DevCentral
Search
Configure Global Search
Log In
Files
F7577895
postgresql.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
postgresql.sls
View Options
# -------------------------------------------------------------
# Salt — Provision Docker engine
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# Project: Nasqueron
# Created: 2018-11-10
# License: Trivial work, not eligible to copyright
# -------------------------------------------------------------
{%
set
has_selinux
=
salt
[
'grains.get'
](
'selinux:enabled'
,
False
)
%}
{%
set
containers
=
pillar
[
'docker_containers'
][
grains
[
'id'
]]
%}
{%
for
instance
,
container
in
containers
[
'postgresql'
]
.items
()
%}
{%
set
image
=
salt
[
'paas_docker.get_image'
](
"library/postgres"
,
container
)
%}
# -------------------------------------------------------------
# Home directory
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
/srv/
{{
instance
}}
/postgresql
:
file.directory
:
-
user
:
999
-
group
:
999
-
makedirs
:
True
{%
if
has_selinux
%}
selinux_context_
{{
instance
}}
_postgresql_data
:
selinux.fcontext_policy_present
:
-
name
:
/srv/
{{
instance
}}
/postgresql
-
sel_type
:
container_file_t
selinux_context_
{{
instance
}}
_postgresql_data_applied
:
selinux.fcontext_policy_applied
:
-
name
:
/srv/
{{
instance
}}
/postgresql
{%
endif
%}
# -------------------------------------------------------------
# Container
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
{{
instance
}}
:
docker_container.running
:
-
detach
:
True
-
interactive
:
True
-
image
:
{{
image
}}
-
binds
:
/srv/
{{
instance
}}
/postgresql:/var/lib/postgresql/data
-
environment
:
POSTGRES_USER
:
{{
salt
[
'zr.get_username'
](
container
[
'credential'
])
}}
POSTGRES_PASSWORD
:
{{
salt
[
'zr.get_password'
](
container
[
'credential'
])
}}
{%
if
'network'
in
container
%}
-
networks
:
-
{{
container
[
'network'
]
}}
{%
endif
%}
{%
endfor
%}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Thu, May 1, 02:45 (20 h, 18 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
2565017
Default Alt Text
postgresql.sls (1 KB)
Attached To
Mode
rOPS Nasqueron Operations
Attached
Detach File
Event Timeline
Log In to Comment