Compare commits
1 Commits
master
...
2nodes-pos
Author | SHA1 | Date | |
---|---|---|---|
|
2cb29f9178 |
3
.gitignore
vendored
3
.gitignore
vendored
@ -1,3 +0,0 @@
|
||||
/.idea/misc.xml
|
||||
/.idea/vcs.xml
|
||||
/.idea/workspace.xml
|
@ -4,24 +4,34 @@ services:
|
||||
pull_policy: always
|
||||
restart: unless-stopped
|
||||
deploy:
|
||||
replicas: 3
|
||||
resources:
|
||||
limits:
|
||||
memory: 10G
|
||||
replicas: 2
|
||||
configs:
|
||||
- source: app_config
|
||||
target: /data/application.yaml
|
||||
|
||||
labels:
|
||||
- "traefik.http.routers.expertisa-master.rule=HostRegexp(`master\\..+`)"
|
||||
- "traefik.http.routers.expertisa-master.tls=true"
|
||||
- "traefik.http.services.expertisa-master.loadbalancer.healthcheck.path=/health/readiness"
|
||||
- "traefik.http.services.expertisa-master.loadbalancer.healthcheck.interval=5s"
|
||||
- "traefik.http.routers.expertisa-${BRANCH}.rule=HostRegexp(`${BRANCH}\\..+`)"
|
||||
- "traefik.http.routers.expertisa-${BRANCH}.tls=true"
|
||||
- "traefik.http.services.expertisa-${BRANCH}.loadbalancer.healthcheck.path=/health"
|
||||
- "traefik.http.services.expertisa-${BRANCH}.loadbalancer.healthcheck.interval=5s"
|
||||
|
||||
networks:
|
||||
- expertisa-twonodes-postgresql
|
||||
depends_on:
|
||||
- psql
|
||||
|
||||
psql:
|
||||
image: postgres:latest
|
||||
environment:
|
||||
JAVA_TOOL_OPTIONS: "-XX:MaxRAMPercentage=90"
|
||||
|
||||
network_mode: bridge
|
||||
POSTGRES_USER: "admin"
|
||||
POSTGRES_PASSWORD: "admin"
|
||||
POSTGRES_DB: "expertisa-metadata"
|
||||
networks:
|
||||
- expertisa-twonodes-postgresql
|
||||
|
||||
networks:
|
||||
expertisa-twonodes-postgresql:
|
||||
external: true
|
||||
|
||||
configs:
|
||||
app_config:
|
||||
@ -29,42 +39,28 @@ configs:
|
||||
infinispan:
|
||||
embedded:
|
||||
enabled: true
|
||||
cluster-name: eisa-master
|
||||
spring:
|
||||
mail:
|
||||
host: smtp.yandex.ru
|
||||
port: 465
|
||||
username: expertisaewh@yandex.ru
|
||||
password: ${NOTIFICATION_PASSWORD}
|
||||
properties:
|
||||
mail:
|
||||
transport:
|
||||
protocol: smtps
|
||||
smtp:
|
||||
auth: true
|
||||
ssl:
|
||||
enable: true
|
||||
cluster-name: eisa-${BRANCH}
|
||||
eisa:
|
||||
force-core-update: true
|
||||
metadata-git:
|
||||
url: https://git.expertdwh.ru/EWH/expert-isa-2-metadata
|
||||
branch: master
|
||||
branch: ${BRANCH}
|
||||
enabled: true
|
||||
token: ${GIT_TOKEN}
|
||||
file-store-type: s3
|
||||
s3:
|
||||
endpoint: minio.app.expertdwh.ru
|
||||
port: 9000
|
||||
access-key: Q13rej1S6TdtXKb5Fuw5
|
||||
secret-key: ArYgb17ovZZutEgxZnIqNKq1h6DfNt7CN5zeiQXg
|
||||
bucket: master
|
||||
#file-store-type: s3
|
||||
#s3:
|
||||
# endpoint: minio.app.expertdwh.ru
|
||||
# port: 9000
|
||||
# access-key: ZfyTrAp9tsxkvfyyEIbC
|
||||
# secret-key: jurIHMBGQ54HLu0CXwLSDiahhT6JV6qwZTFhqO37
|
||||
# bucket: master
|
||||
db:
|
||||
common-datasource-name: meta
|
||||
common-datasource-name: psql
|
||||
jdbc:
|
||||
meta:
|
||||
url: jdbc:postgresql://app.expertdwh.ru:5432/eisa-master
|
||||
username: ewh
|
||||
password: ${EWH_PASSWORD}
|
||||
psql:
|
||||
url: jdbc:postgresql://psql:5432/expertisa-metadata
|
||||
username: admin
|
||||
password: admin
|
||||
EWH:
|
||||
url: jdbc:postgresql://adb-master.expertdwh.ru:5432/ewh
|
||||
username: ewh
|
||||
@ -75,10 +71,8 @@ configs:
|
||||
url: jdbc:oracle:thin:@oracle.expertdwh.ru:1521:ewh
|
||||
username: ewh
|
||||
password: ${EWH_PASSWORD}
|
||||
pre-script: core-oracle.preScript
|
||||
DWH_ORA:
|
||||
url: jdbc:oracle:thin:@oracle.expertdwh.ru:1521:ewh
|
||||
username: dwh
|
||||
password: ${DWH_PASSWORD}
|
||||
pre-script: core-oracle.preScript
|
||||
audit.enabled: true
|
Loading…
Reference in New Issue
Block a user