mirror of
https://github.com/Security-Onion-Solutions/securityonion.git
synced 2026-09-19 06:09:23 +02:00
The Hydra admin API creates OAuth clients and introspects tokens without authentication, relying on network isolation the same way Kratos does, but so-hydra published 0.0.0.0:4445:4445 and sat on sobridge. With userland-proxy left at its default of true, Docker ran a proxy listener on the host, so any container reached the admin API through the manager IP or the bridge gateway regardless of its docker network. so-hydra now sits alone on soauth and no longer publishes 4445. 4444 is still published, so the nginx proxy for /oauth2/token and the well-known endpoints is unchanged. so-soc is already dual homed from the Kratos change and reaches the admin API over soauth, so only its hostUrl moves. wait_for_hydra polls the container address instead of the host port. so-client reaches the admin API through docker exec, mirroring so-user. Exit codes still propagate, so the --fail-with-body error handling is unchanged. so-hydra is removed in up_to_3.4.0 alongside so-kratos and so-soc so the highstate recreates it with the correct network membership. The auth network range is already handled by set_soauth_range.
255 lines
5.6 KiB
YAML
255 lines
5.6 KiB
YAML
docker:
|
|
range: '172.17.1.0/24'
|
|
gateway: '172.17.1.1'
|
|
networks:
|
|
sobridge: {}
|
|
soauth:
|
|
range: '172.17.2.0/24'
|
|
gateway: '172.17.2.1'
|
|
manager_only: True
|
|
ulimits:
|
|
- name: nofile
|
|
soft: 1048576
|
|
hard: 1048576
|
|
containers:
|
|
'so-dockerregistry':
|
|
final_octet: 20
|
|
port_bindings:
|
|
- 0.0.0.0:5000:5000
|
|
custom_bind_mounts: []
|
|
extra_hosts: []
|
|
extra_env: []
|
|
ulimits: []
|
|
'so-elastic-fleet':
|
|
final_octet: 21
|
|
port_bindings:
|
|
- 0.0.0.0:8220:8220/tcp
|
|
custom_bind_mounts: []
|
|
extra_hosts: []
|
|
extra_env: []
|
|
ulimits: []
|
|
'so-elasticsearch':
|
|
final_octet: 22
|
|
port_bindings:
|
|
- 0.0.0.0:9200:9200/tcp
|
|
- 0.0.0.0:9300:9300/tcp
|
|
custom_bind_mounts: []
|
|
extra_hosts: []
|
|
extra_env: []
|
|
ulimits:
|
|
- name: memlock
|
|
soft: -1
|
|
hard: -1
|
|
- name: nofile
|
|
soft: 65536
|
|
hard: 65536
|
|
- name: nproc
|
|
soft: 4096
|
|
hard: 4096
|
|
'so-influxdb':
|
|
final_octet: 26
|
|
port_bindings:
|
|
- 0.0.0.0:8086:8086
|
|
custom_bind_mounts: []
|
|
extra_hosts: []
|
|
extra_env: []
|
|
ulimits: []
|
|
'so-kibana':
|
|
final_octet: 27
|
|
port_bindings:
|
|
- 0.0.0.0:5601:5601
|
|
custom_bind_mounts: []
|
|
extra_hosts: []
|
|
extra_env: []
|
|
ulimits: []
|
|
'so-kratos':
|
|
final_octet: 28
|
|
networks: ['soauth']
|
|
port_bindings:
|
|
- 0.0.0.0:4433:4433
|
|
custom_bind_mounts: []
|
|
extra_hosts: []
|
|
extra_env: []
|
|
ulimits: []
|
|
'so-hydra':
|
|
final_octet: 30
|
|
networks: ['soauth']
|
|
port_bindings:
|
|
- 0.0.0.0:4444:4444
|
|
custom_bind_mounts: []
|
|
extra_hosts: []
|
|
extra_env: []
|
|
ulimits: []
|
|
'so-logstash':
|
|
final_octet: 29
|
|
port_bindings:
|
|
- 0.0.0.0:3765:3765
|
|
- 0.0.0.0:5044:5044
|
|
- 0.0.0.0:5055:5055
|
|
- 0.0.0.0:5056:5056
|
|
- 0.0.0.0:5644:5644
|
|
- 0.0.0.0:6050:6050
|
|
- 0.0.0.0:6051:6051
|
|
- 0.0.0.0:6052:6052
|
|
- 0.0.0.0:6053:6053
|
|
- 0.0.0.0:9600:9600
|
|
custom_bind_mounts: []
|
|
extra_hosts: []
|
|
extra_env: []
|
|
ulimits: []
|
|
'so-nginx':
|
|
final_octet: 31
|
|
port_bindings:
|
|
- 80:80
|
|
- 443:443
|
|
- 8443:8443
|
|
- 7788:7788
|
|
- 7789:7789
|
|
custom_bind_mounts: []
|
|
extra_hosts: []
|
|
extra_env: []
|
|
ulimits: []
|
|
'so-nginx-fleet-node':
|
|
final_octet: 31
|
|
port_bindings:
|
|
- 8443:8443
|
|
custom_bind_mounts: []
|
|
extra_hosts: []
|
|
extra_env: []
|
|
ulimits: []
|
|
'so-redis':
|
|
final_octet: 33
|
|
port_bindings:
|
|
- 0.0.0.0:6379:6379
|
|
- 0.0.0.0:9696:9696
|
|
custom_bind_mounts: []
|
|
extra_hosts: []
|
|
extra_env: []
|
|
ulimits: []
|
|
'so-sensoroni':
|
|
final_octet: 99
|
|
custom_bind_mounts: []
|
|
extra_hosts: []
|
|
extra_env: []
|
|
ulimits: []
|
|
'so-soc':
|
|
final_octet: 34
|
|
networks: ['sobridge', 'soauth']
|
|
port_bindings:
|
|
- 0.0.0.0:9822:9822
|
|
custom_bind_mounts: []
|
|
extra_hosts: []
|
|
extra_env: []
|
|
ulimits: []
|
|
'so-strelka-backend':
|
|
final_octet: 36
|
|
custom_bind_mounts: []
|
|
extra_hosts: []
|
|
extra_env: []
|
|
ulimits: []
|
|
'so-strelka-filestream':
|
|
final_octet: 37
|
|
custom_bind_mounts: []
|
|
extra_hosts: []
|
|
extra_env: []
|
|
ulimits: []
|
|
'so-strelka-frontend':
|
|
final_octet: 38
|
|
port_bindings:
|
|
- 0.0.0.0:57314:57314
|
|
custom_bind_mounts: []
|
|
extra_hosts: []
|
|
extra_env: []
|
|
ulimits: []
|
|
'so-strelka-manager':
|
|
final_octet: 39
|
|
custom_bind_mounts: []
|
|
extra_hosts: []
|
|
extra_env: []
|
|
ulimits: []
|
|
'so-strelka-gatekeeper':
|
|
final_octet: 40
|
|
port_bindings:
|
|
- 0.0.0.0:6381:6379
|
|
custom_bind_mounts: []
|
|
extra_hosts: []
|
|
extra_env: []
|
|
ulimits: []
|
|
'so-strelka-coordinator':
|
|
final_octet: 41
|
|
port_bindings:
|
|
- 0.0.0.0:6380:6379
|
|
custom_bind_mounts: []
|
|
extra_hosts: []
|
|
extra_env: []
|
|
ulimits: []
|
|
'so-elastalert':
|
|
final_octet: 42
|
|
custom_bind_mounts: []
|
|
extra_hosts: []
|
|
extra_env: []
|
|
ulimits: []
|
|
'so-elastic-fleet-package-registry':
|
|
final_octet: 44
|
|
port_bindings:
|
|
- 0.0.0.0:8080:8080/tcp
|
|
custom_bind_mounts: []
|
|
extra_hosts: []
|
|
extra_env: []
|
|
ulimits: []
|
|
'so-idh':
|
|
final_octet: 45
|
|
custom_bind_mounts: []
|
|
extra_hosts: []
|
|
extra_env: []
|
|
ulimits: []
|
|
'so-elastic-agent':
|
|
final_octet: 46
|
|
port_bindings:
|
|
- 0.0.0.0:514:514/tcp
|
|
- 0.0.0.0:514:514/udp
|
|
custom_bind_mounts: []
|
|
extra_hosts: []
|
|
extra_env: []
|
|
ulimits: []
|
|
'so-telegraf':
|
|
final_octet: 99
|
|
custom_bind_mounts: []
|
|
extra_hosts: []
|
|
extra_env: []
|
|
ulimits: []
|
|
'so-suricata':
|
|
final_octet: 99
|
|
custom_bind_mounts: []
|
|
extra_hosts: []
|
|
extra_env: []
|
|
ulimits: []
|
|
'so-zeek':
|
|
final_octet: 99
|
|
custom_bind_mounts: []
|
|
extra_hosts: []
|
|
extra_env: []
|
|
ulimits:
|
|
- name: core
|
|
soft: 0
|
|
hard: 0
|
|
'so-kafka':
|
|
final_octet: 88
|
|
port_bindings:
|
|
- 0.0.0.0:9092:9092
|
|
- 0.0.0.0:29092:29092
|
|
- 0.0.0.0:9093:9093
|
|
- 0.0.0.0:8778:8778
|
|
custom_bind_mounts: []
|
|
extra_hosts: []
|
|
extra_env: []
|
|
ulimits: []
|
|
'so-postgres':
|
|
final_octet: 47
|
|
port_bindings:
|
|
- 0.0.0.0:5432:5432
|
|
custom_bind_mounts: []
|
|
extra_hosts: []
|
|
extra_env: []
|
|
ulimits: []
|