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,21 +4,34 @@ services:
|
|||||||
pull_policy: always
|
pull_policy: always
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
deploy:
|
deploy:
|
||||||
replicas: 3
|
replicas: 2
|
||||||
configs:
|
configs:
|
||||||
- source: app_config
|
- source: app_config
|
||||||
target: /data/application.yaml
|
target: /data/application.yaml
|
||||||
|
|
||||||
labels:
|
labels:
|
||||||
- "traefik.http.routers.expertisa-master.rule=HostRegexp(`master\\..+`)"
|
- "traefik.http.routers.expertisa-${BRANCH}.rule=HostRegexp(`${BRANCH}\\..+`)"
|
||||||
- "traefik.http.routers.expertisa-master.tls=true"
|
- "traefik.http.routers.expertisa-${BRANCH}.tls=true"
|
||||||
- "traefik.http.services.expertisa-master.loadbalancer.healthcheck.path=/health"
|
- "traefik.http.services.expertisa-${BRANCH}.loadbalancer.healthcheck.path=/health"
|
||||||
- "traefik.http.services.expertisa-master.loadbalancer.healthcheck.interval=5s"
|
- "traefik.http.services.expertisa-${BRANCH}.loadbalancer.healthcheck.interval=5s"
|
||||||
|
|
||||||
|
networks:
|
||||||
|
- expertisa-twonodes-postgresql
|
||||||
|
depends_on:
|
||||||
|
- psql
|
||||||
|
|
||||||
|
psql:
|
||||||
|
image: postgres:latest
|
||||||
environment:
|
environment:
|
||||||
JAVA_TOOL_OPTIONS: "-XX:MaxRAMPercentage=90"
|
POSTGRES_USER: "admin"
|
||||||
|
POSTGRES_PASSWORD: "admin"
|
||||||
network_mode: bridge
|
POSTGRES_DB: "expertisa-metadata"
|
||||||
|
networks:
|
||||||
|
- expertisa-twonodes-postgresql
|
||||||
|
|
||||||
|
networks:
|
||||||
|
expertisa-twonodes-postgresql:
|
||||||
|
external: true
|
||||||
|
|
||||||
configs:
|
configs:
|
||||||
app_config:
|
app_config:
|
||||||
@ -26,28 +39,28 @@ configs:
|
|||||||
infinispan:
|
infinispan:
|
||||||
embedded:
|
embedded:
|
||||||
enabled: true
|
enabled: true
|
||||||
cluster-name: eisa-master
|
cluster-name: eisa-${BRANCH}
|
||||||
eisa:
|
eisa:
|
||||||
force-core-update: true
|
force-core-update: true
|
||||||
metadata-git:
|
metadata-git:
|
||||||
url: https://git.expertdwh.ru/EWH/expert-isa-2-metadata
|
url: https://git.expertdwh.ru/EWH/expert-isa-2-metadata
|
||||||
branch: master
|
branch: ${BRANCH}
|
||||||
enabled: true
|
enabled: true
|
||||||
token: ${GIT_TOKEN}
|
token: ${GIT_TOKEN}
|
||||||
file-store-type: s3
|
#file-store-type: s3
|
||||||
s3:
|
#s3:
|
||||||
endpoint: minio.app.expertdwh.ru
|
# endpoint: minio.app.expertdwh.ru
|
||||||
port: 9000
|
# port: 9000
|
||||||
access-key: ZfyTrAp9tsxkvfyyEIbC
|
# access-key: ZfyTrAp9tsxkvfyyEIbC
|
||||||
secret-key: jurIHMBGQ54HLu0CXwLSDiahhT6JV6qwZTFhqO37
|
# secret-key: jurIHMBGQ54HLu0CXwLSDiahhT6JV6qwZTFhqO37
|
||||||
bucket: master
|
# bucket: master
|
||||||
db:
|
db:
|
||||||
common-datasource-name: meta
|
common-datasource-name: psql
|
||||||
jdbc:
|
jdbc:
|
||||||
meta:
|
psql:
|
||||||
url: jdbc:postgresql://app.expertdwh.ru:5432/eisa-master
|
url: jdbc:postgresql://psql:5432/expertisa-metadata
|
||||||
username: ewh
|
username: admin
|
||||||
password: ${EWH_PASSWORD}
|
password: admin
|
||||||
EWH:
|
EWH:
|
||||||
url: jdbc:postgresql://adb-master.expertdwh.ru:5432/ewh
|
url: jdbc:postgresql://adb-master.expertdwh.ru:5432/ewh
|
||||||
username: ewh
|
username: ewh
|
||||||
|
Loading…
Reference in New Issue
Block a user