Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
D
deploy
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Odysseus
deploy
Commits
0ee153cc
Commit
0ee153cc
authored
Feb 02, 2024
by
Your Name
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add kong
parent
8aef194a
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
150 additions
and
0 deletions
+150
-0
Makefile
Makefile
+9
-0
POSTGRES_PASSWORD
conf/kong/POSTGRES_PASSWORD
+1
-0
kong.yaml
conf/kong/kong.yaml
+3
-0
docker-compose-kong.yml
docker-compose-kong.yml
+137
-0
No files found.
Makefile
0 → 100644
View file @
0ee153cc
kong-postgres
:
COMPOSE_PROFILES
=
database
KONG_DATABASE
=
postgres docker-compose-kong.yml up
-d
kong-dbless
:
docker-compose up
-d
clean
:
docker-compose
kill
docker-compose
rm
-f
conf/kong/POSTGRES_PASSWORD
0 → 100755
View file @
0ee153cc
kong
\ No newline at end of file
conf/kong/kong.yaml
0 → 100755
View file @
0ee153cc
# a very minimal declarative config file
_format_version
:
"
2.1"
_transform
:
true
docker-compose-kong.yml
0 → 100644
View file @
0ee153cc
version
:
'
3.9'
x-kong-config
:
&kong-env
KONG_DATABASE
:
${KONG_DATABASE:-off}
KONG_PG_DATABASE
:
${KONG_PG_DATABASE:-kong}
KONG_PG_HOST
:
db
KONG_PG_USER
:
${KONG_PG_USER:-kong}
KONG_PG_PASSWORD_FILE
:
/run/secrets/kong_postgres_password
volumes
:
kong_data
:
{}
kong_prefix_vol
:
driver
:
local
driver_opts
:
type
:
'
none'
o
:
'
bind'
device
:
'
./data/kong/kong_prefix_vol/'
kong_tmp_vol
:
driver
:
local
driver_opts
:
type
:
'
none'
o
:
'
bind'
device
:
'
./data/kong/kong_tmp_vol/'
networks
:
kong-net
:
external
:
false
services
:
kong-migrations
:
image
:
"
${KONG_DOCKER_TAG:-kong:latest}"
command
:
kong migrations bootstrap
profiles
:
[
"
database"
]
depends_on
:
-
db
environment
:
<<
:
*kong-env
secrets
:
-
kong_postgres_password
networks
:
-
kong-net
restart
:
on-failure
kong-migrations-up
:
image
:
"
${KONG_DOCKER_TAG:-kong:latest}"
command
:
kong migrations up && kong migrations finish
profiles
:
[
"
database"
]
depends_on
:
-
db
environment
:
<<
:
*kong-env
secrets
:
-
kong_postgres_password
networks
:
-
kong-net
restart
:
on-failure
kong
:
image
:
"
${KONG_DOCKER_TAG:-kong:latest}"
user
:
"
${KONG_USER:-kong}"
environment
:
<<
:
*kong-env
KONG_ADMIN_ACCESS_LOG
:
/dev/stdout
KONG_ADMIN_ERROR_LOG
:
/dev/stderr
KONG_PROXY_LISTEN
:
"
${KONG_PROXY_LISTEN:-0.0.0.0:8000}"
KONG_ADMIN_LISTEN
:
"
${KONG_ADMIN_LISTEN:-0.0.0.0:8001}"
KONG_ADMIN_GUI_LISTEN
:
"
${KONG_ADMIN_GUI_LISTEN:-0.0.0.0:8002}"
KONG_PROXY_ACCESS_LOG
:
/dev/stdout
KONG_PROXY_ERROR_LOG
:
/dev/stderr
KONG_PREFIX
:
${KONG_PREFIX:-/var/run/kong}
KONG_DECLARATIVE_CONFIG
:
"
/opt/kong/kong.yaml"
secrets
:
-
kong_postgres_password
networks
:
-
kong-net
ports
:
# The following two environment variables default to an insecure value (0.0.0.0)
# according to the CIS Security test.
-
"
${KONG_INBOUND_PROXY_LISTEN:-0.0.0.0}:8000:8000/tcp"
-
"
${KONG_INBOUND_SSL_PROXY_LISTEN:-0.0.0.0}:8443:8443/tcp"
# Making them mandatory but undefined, like so would be backwards-breaking:
# - "${KONG_INBOUND_PROXY_LISTEN?Missing inbound proxy host}:8000:8000/tcp"
# - "${KONG_INBOUND_SSL_PROXY_LISTEN?Missing inbound proxy ssl host}:8443:8443/tcp"
# Alternative is deactivating check 5.13 in the security bench, if we consider Kong's own config to be enough security here
-
"
127.0.0.1:8001:8001/tcp"
-
"
127.0.0.1:8444:8444/tcp"
-
"
127.0.0.1:8002:8002/tcp"
healthcheck
:
test
:
[
"
CMD"
,
"
kong"
,
"
health"
]
interval
:
10s
timeout
:
10s
retries
:
10
restart
:
on-failure:5
read_only
:
true
volumes
:
-
kong_prefix_vol:${KONG_PREFIX:-/var/run/kong}
-
kong_tmp_vol:/tmp
-
./config/kong/:/opt/kong
security_opt
:
-
no-new-privileges
db
:
image
:
postgres:9.5
profiles
:
[
"
database"
]
environment
:
POSTGRES_DB
:
${KONG_PG_DATABASE:-kong}
POSTGRES_USER
:
${KONG_PG_USER:-kong}
POSTGRES_PASSWORD_FILE
:
/run/secrets/kong_postgres_password
secrets
:
-
kong_postgres_password
healthcheck
:
test
:
[
"
CMD"
,
"
pg_isready"
,
"
-d"
,
"
${KONG_PG_DATABASE:-kong}"
,
"
-U"
,
"
${KONG_PG_USER:-kong}"
]
interval
:
30s
timeout
:
30s
retries
:
3
restart
:
on-failure
stdin_open
:
true
tty
:
true
networks
:
-
kong-net
volumes
:
-
kong_data:/var/lib/postgresql/data
secrets
:
kong_postgres_password
:
file
:
./conf/kong/POSTGRES_PASSWORD
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment