From 85ebd30abcb58fb2171985fa70e71ec03a6404b8 Mon Sep 17 00:00:00 2001 From: Baptiste-Ferrand Date: Sun, 1 Mar 2026 20:43:29 +0100 Subject: [PATCH 1/8] update pipeline using workflow_dispatch whit inputs options --- .github/workflows/Deploy.yml | 82 ++++++++++++------------------------ 1 file changed, 28 insertions(+), 54 deletions(-) diff --git a/.github/workflows/Deploy.yml b/.github/workflows/Deploy.yml index 360443a..25064dc 100644 --- a/.github/workflows/Deploy.yml +++ b/.github/workflows/Deploy.yml @@ -1,79 +1,53 @@ -name: Ansible Deployment +name: 🚀 Ansible Deploy on: - pull_request: - types: [closed] - branches: - - main - - develop + workflow_dispatch: + inputs: + environment: + description: 'Environment target' + required: true + default: 'pre_prod' + type: choice + options: + - pre_prod + - prod + dry_run: + description: 'Check mode (dry-run)' + required: false + default: false + type: boolean env: ANSIBLE_HOST_KEY_CHECKING: "False" jobs: - deploy-prod: - if: | - github.event.pull_request.merged == true && - github.event.pull_request.base.ref == 'main' + deploy: runs-on: ubuntu-latest - environment: production + environment: ${{ inputs.environment == 'prod' && 'production' || 'staging' }} steps: - - name: Checkout repository + - name: 📥 Checkout repository uses: actions/checkout@v4 - - name: Setup Python - uses: actions/setup-python@v4 + - name: 🐍 Setup Python + uses: actions/setup-python@v5 with: python-version: '3.11' - - name: Install Ansible + - name: 📦 Install Ansible run: pip install ansible - - name: Load SSH key - uses: webfactory/ssh-agent@v0.9.0 - with: - ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }} - - - name: Deploy to PRODUCTION - working-directory: ansible - run: | - echo '${{ secrets.VAULT_PASSWORD_PROD }}' > vault_pass.txt - ansible-playbook -i hosts playbooks/site.yml \ - --limit=prod \ - --vault-password-file vault_pass.txt - rm vault_pass.txt - - deploy-preprod: - if: | - github.event.pull_request.merged == true && - github.event.pull_request.base.ref == 'develop' - runs-on: ubuntu-latest - environment: staging - - steps: - - name: Checkout repository - uses: actions/checkout@v4 - - - - name: Setup Python - uses: actions/setup-python@v4 - with: - python-version: '3.11' - - - name: Install Ansible - run: pip install ansible - - - name: Load SSH key + - name: 🔑 Load SSH key uses: webfactory/ssh-agent@v0.9.0 with: ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }} - - name: Deploy to PRE-PRODUCTION + - name: 🚀 Deploy to ${{ inputs.environment == 'prod' && 'PRODUCTION' || 'PRE-PRODUCTION' }} working-directory: ansible run: | - echo '${{ secrets.VAULT_PASSWORD_PRE_PROD }}' > vault_pass.txt + echo '${{ inputs.environment == 'prod' && secrets.VAULT_PASSWORD_PROD || secrets.VAULT_PASSWORD_PRE_PROD }}' > vault_pass.txt ansible-playbook -i hosts playbooks/site.yml \ - --limit=pre_prod \ - --vault-password-file vault_pass.txt + --limit=${{ inputs.environment }} \ + --vault-password-file vault_pass.txt \ + ${{ inputs.dry_run == true && '--check' || '' }} rm vault_pass.txt \ No newline at end of file From 3439e9dadd1742c8067d923c77fd5a92b1cf4e3d Mon Sep 17 00:00:00 2001 From: Baptiste-Ferrand Date: Sun, 1 Mar 2026 20:44:24 +0100 Subject: [PATCH 2/8] update home path and remove prometheus generation --- ansible/roles/deploy/defaults/main.yml | 2 +- ansible/roles/deploy/tasks/main.yml | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/ansible/roles/deploy/defaults/main.yml b/ansible/roles/deploy/defaults/main.yml index af0bd51..6ed49c9 100644 --- a/ansible/roles/deploy/defaults/main.yml +++ b/ansible/roles/deploy/defaults/main.yml @@ -1 +1 @@ -project_root: /home/user/project \ No newline at end of file +project_root: /opt/projects/trackntrain \ No newline at end of file diff --git a/ansible/roles/deploy/tasks/main.yml b/ansible/roles/deploy/tasks/main.yml index 3e9baed..c17e6b8 100644 --- a/ansible/roles/deploy/tasks/main.yml +++ b/ansible/roles/deploy/tasks/main.yml @@ -19,11 +19,11 @@ dest: "{{ project_root }}/{{ inventory_hostname }}/.env" mode: '0644' - - name: Génération du fichier prometheus.yml - ansible.builtin.template: - src: prometheus.yml.j2 - dest: "{{ project_root }}/{{ inventory_hostname }}/prometheus.yml" - mode: '0644' + # - name: Génération du fichier prometheus.yml + # ansible.builtin.template: + # src: prometheus.yml.j2 + # dest: "{{ project_root }}/{{ inventory_hostname }}/prometheus.yml" + # mode: '0644' - name: Vérifier si des services Docker Compose tournent command: From 2a47531db2aba4286bf90cea6928c5f280983bc6 Mon Sep 17 00:00:00 2001 From: Baptiste-Ferrand Date: Sun, 1 Mar 2026 20:45:24 +0100 Subject: [PATCH 3/8] update docker compose j2 using infra network, traefik proxy and watchtower --- .../roles/deploy/templates/docker-compose.j2 | 91 +++++++++---------- 1 file changed, 41 insertions(+), 50 deletions(-) diff --git a/ansible/roles/deploy/templates/docker-compose.j2 b/ansible/roles/deploy/templates/docker-compose.j2 index c506986..31d11d7 100644 --- a/ansible/roles/deploy/templates/docker-compose.j2 +++ b/ansible/roles/deploy/templates/docker-compose.j2 @@ -8,7 +8,7 @@ volumes: services: postgres: - image: postgres + image: postgres:17 container_name: {{ postgres_container }} restart: always ports: @@ -24,9 +24,9 @@ services: image: minio/minio:latest container_name: {{ minio_container }} restart: unless-stopped - ports: - - "{{ minio_api_port }}:9000" - - "{{ minio_console_port }}:9001" + expose: + - "9000" + - "9001" environment: MINIO_ROOT_USER: "${MINIO_ROOT_USER}" MINIO_ROOT_PASSWORD: "${MINIO_ROOT_PASSWORD}" @@ -34,13 +34,29 @@ services: command: server /data --console-address ":9001" volumes: - {{ minio_volume }}:/data + labels: + - "traefik.enable=true" + # Console MinIO (UI) + - "traefik.http.routers.minio-console.rule=Host(`{{ domain_minio }}`)" + - "traefik.http.routers.minio-console.entrypoints=websecure" + - "traefik.http.routers.minio-console.tls.certresolver=letsencrypt" + - "traefik.http.routers.minio-console.service=minio-console" + - "traefik.http.services.minio-console.loadbalancer.server.port=9001" + # API MinIO + - "traefik.http.routers.minio-api.rule=Host(`{{ domain_minio }}`) && PathPrefix(`/`)" + - "traefik.http.routers.minio-api.entrypoints=websecure" + - "traefik.http.routers.minio-api.tls.certresolver=letsencrypt" + - "traefik.http.routers.minio-api.service=minio-api" + - "traefik.http.services.minio-api.loadbalancer.server.port=9000" + networks: + - {{ docker_network_name }} api: image: {{ api_image }} container_name: {{ api_container }} restart: unless-stopped - ports: - - "{{ api_external_port }}:8000" + expose: + - "8000" depends_on: - postgres - minio @@ -56,60 +72,35 @@ services: MINIO_BUCKET_PP: "${MINIO_BUCKET_PP}" MINIO_BUCKET_USERS: "${MINIO_BUCKET_USERS}" labels: + - "traefik.enable=true" + - "traefik.http.routers.api.rule=Host(`{{ domain_api }}`)" + - "traefik.http.routers.api.entrypoints=websecure" + - "traefik.http.routers.api.tls.certresolver=letsencrypt" + - "traefik.http.services.api.loadbalancer.server.port=8000" - "com.centurylinklabs.watchtower.enable=true" + networks: + - {{ docker_network_name }} front: image: {{ front_image }} container_name: {{ front_container }} restart: unless-stopped + expose: + - "80" depends_on: - api - ports: - - "{{ front_external_port }}:80" environment: VITE_APP_API_URL: "${VITE_APP_API_URL}" labels: + - "traefik.enable=true" + - "traefik.http.routers.front.rule=Host(`{{ domain_front }}`)" + - "traefik.http.routers.front.entrypoints=websecure" + - "traefik.http.routers.front.tls.certresolver=letsencrypt" + - "traefik.http.services.front.loadbalancer.server.port=80" - "com.centurylinklabs.watchtower.enable=true" + networks: + - {{ docker_network_name }} - watchtower: - image: containrrr/watchtower:latest - container_name: {{ watchtower_container }} - restart: unless-stopped - command: - - --interval - - "${WATCHTOWER_INTERVAL:-300}" - - --label-enable - - --cleanup - volumes: - - /var/run/docker.sock:/var/run/docker.sock - - grafana: - image: grafana/grafana - container_name: {{ grafana_container }} - restart: unless-stopped - ports: - - "{{ grafana_external_port }}:4000" - environment: - GF_SERVER_HTTP_PORT: 4000 - GF_SECURITY_ADMIN_USER: "${GF_SECURITY_ADMIN_USER}" - GF_SECURITY_ADMIN_PASSWORD: "${GF_SECURITY_ADMIN_PASSWORD}" - GF_SERVER_ROOT_URL: "${GF_SERVER_ROOT_URL}" - volumes: - - {{ grafana_volume }}:/var/lib/grafana - - prometheus: - image: prom/prometheus - container_name: {{ prometheus_container }} - restart: unless-stopped - ports: - - "{{ prometheus_external_port }}:9090" - volumes: - - {{ prometheus_volume }}:/prometheus - - ./prometheus.yml:/etc/prometheus/prometheus.yml - command: - - '--config.file=/etc/prometheus/prometheus.yml' - - '--storage.tsdb.path=/prometheus' - - '--web.console.libraries=/etc/prometheus/console_libraries' - - '--web.console.templates=/etc/prometheus/consoles' - - '--storage.tsdb.retention.time=200h' - - '--web.enable-lifecycle' \ No newline at end of file +networks: + {{ docker_network_name }}: + external: true \ No newline at end of file From dcada0b65b04c4a3b5bde2b6b4cbd00c4ce25ea8 Mon Sep 17 00:00:00 2001 From: Baptiste-Ferrand Date: Sun, 1 Mar 2026 20:45:35 +0100 Subject: [PATCH 4/8] using onli role deploy --- ansible/playbooks/site.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ansible/playbooks/site.yml b/ansible/playbooks/site.yml index 7ea71d5..a0016fb 100644 --- a/ansible/playbooks/site.yml +++ b/ansible/playbooks/site.yml @@ -3,7 +3,7 @@ hosts: all become: true roles: - - { role: docker, tags: docker } - - { role: certbot, tags: certbot } - - { role: nginx, tags: nginx } + # - { role: docker, tags: docker } + # - { role: certbot, tags: certbot } + # - { role: nginx, tags: nginx } - { role: deploy, tags: deploy} From 1ccba3febfc51aa2e0cc01fa24ac533905b5bf65 Mon Sep 17 00:00:00 2001 From: Baptiste-Ferrand Date: Sun, 1 Mar 2026 20:46:48 +0100 Subject: [PATCH 5/8] adding secret --- ansible/host_vars/pre-prod.trackntrain.fr.yml | 293 +++++++++--------- 1 file changed, 152 insertions(+), 141 deletions(-) diff --git a/ansible/host_vars/pre-prod.trackntrain.fr.yml b/ansible/host_vars/pre-prod.trackntrain.fr.yml index e9f7786..1669c83 100644 --- a/ansible/host_vars/pre-prod.trackntrain.fr.yml +++ b/ansible/host_vars/pre-prod.trackntrain.fr.yml @@ -1,142 +1,153 @@ $ANSIBLE_VAULT;1.1;AES256 -39656163373136653066633034313634343535303435373937393332343637636330316236653534 -6636616134326562666566623161646636393262313932390a663032316261313562623038336433 -30663937343466616636626162386366643134333166613736663039373630326465663363346334 -3735646532633035310a396236396331343330346235366565663832356363316162383836346332 -65353430316338323563626333376333346538636339333734306433366561626339313637333737 -61613361623432663961333432313430653066653034636539633633393961626433333366363765 -66363639633531653930313936346430363863646535343366633164353865326235626563383366 -38383661333662653465636364643366613964326266656239613539383837353463663431613433 -34393562353838303666323137623130376536623438613234623630613861396432353834376534 -39373162373766373937666336373730613439346265616266633937623965363037326234373139 -37386565336335623364633537306133376535376563346134663861393937646236653733383932 -37656239313064666364386133633833323662646335383362623866323135343464316264336161 -36623666343162356430346463636234303062666632333533663131646339353339303339366336 -64626263633032393535626533646530303463316234626564363463633936356235626261353335 -66366638613464333537333930623163356266366563346162646132326630653938303632656435 -64636137333763653230323138373435303066343235653461383533383032373839346164303933 -30343061346563633637633065363465613833613430663964653830643566633161653762353537 -36393663373730633832636338383135656532633630626266373162383962323461626163303237 -63653435653863363630643263376261393033303132616563366239313132636463383761653536 -32343035643737643731616435333763313535363833376239383339393864326566623736326161 -36313230386233636666666237316239373432616463643938333862623766376632373536326666 -64393133626563376134356235393436393763383736313264316330666561626430636436363734 -38373934613332393366373734616263613434313235383539353431336537363232626439363433 -31623431326337316363386635396238623534373435616166386532316162616166396136366562 -38616530623661333934383834666637386665643636323766346637383030666361353836653765 -62663937373662316330623335323937326564636565393035626637346562653234356432313837 -37663132313136643134663366373538326139666166346636353834323934336461383833663330 -64333335666461376334396561636339646237316536323062393033323539356335366435663139 -64353433306265373563383963653237626265333431336230363336363736376638323963353966 -36643863646461326439333264373633313835373962383365373466646566323335376437623937 -33313662326334373164373938376235383565356338383738396435336332636565323064383162 -33356631653530326461616162353134323138336533646630376261623366393863633431363838 -62653531376565646336616433323731613134303062303932653265373933333861666564353133 -65326238356665303333356362346461303236323863353438336130346335393363373739363762 -62383036316632336632646533666637383265656539636233656364636439373863386665386561 -31363563623530303465353062646238623337326234356636623661346335376632393662356438 -61613866623364633337376164343765346664653664393838333736626364373738663230653335 -37366233666534656164616266376134656165373563366666653663653562636431316437633365 -62333933613239363635636562363739353030373465386165306137616636633763653464313436 -39636433656463313336353265656463346534353334383730343265353664376538646239623034 -33666339613734666234376130383033376133323562656533336430333833386238366238363262 -62373139623538363638393031316530656365396538346566313837306439303063323062646433 -34323237613232643737323439363639393236663331393134353438386539306566373332383931 -31333035356633303230613736306536373066313166393062306536353031376130386632643933 -61353264343333656665353838346539653963316161356466346636383038366663336539316563 -66363433646163636664613164346439633639326136366337653633316534346631393266663235 -38343165646430663737613330373037363739653862643434306262316335386464383963343365 -32646531353664303830303163616666386633613966666465323131623333353533323563623230 -30373830633663343233363731623366653566373934613165363339643133383832313035646431 -62326161333739396465626130653338646335653033353230383162336265656462353166653532 -38636138613161633366333139323233643835323061636332613835646461613930323638663532 -36616366353164366638626366333330633064633762386133356261343261313739653964323939 -61376261383138373632386232313039643631333137646635633836336635383030623634623865 -34373666653536353231366136613362313035353932623562616538616538326333386638396232 -63363365346466396331396532303031616165343533313366386438303661393132663965306434 -34363461326233363533356362336433656465653930396266646363306638393432303238633938 -63633665393236633136353238316364373537306130643131356164616162386339346138333166 -39373936323330636138616563303035396536663562333635613363383336653862393536306430 -64633232313830623234323363353630663731343431616562663661363737353963373561386365 -61363939333861636234666335323265323661366233366530383737663439313032656231376637 -65373838643161316632316331333433316331666563343539633533343132623262313139653165 -31306636363235313765633031656636333461306165303730356137616633383566393530646538 -66626134633461333166336238663631663631343632333931343035386336383361353061663464 -30373463376163356566356235613632396633383131306430376338346261303236366664393838 -31663763343066396235323933326162366432633632663037623634623835643731653065653237 -65663639616339323835356534663831613962613464363037613835333139653661663531666362 -33306530663061396334393836316238356336313033313563373131616261336566393761333663 -35323765303034333539393361306633396230383338656439306666633233636163333330333938 -39336266636337623431303737303637313436393435313330356631336430623066363064363530 -64383633373463626532376331363264623137643163313334373339323334323934626637383966 -32376439623036323230363034633565373432303665613865383135643064306634653566336132 -32623739393337323261383261616532376264313963356335353032306661613130363162353134 -30376337373632326538303135373236376432333866306531333465663761303939613762313265 -30653831656237626364363433313237626565306665343963663838393931346533323565663533 -66633232323664386664303336623236383831313036643038626433373735656235616164323637 -30343639333939613962346632376438323065323938396138613334333561376265343864356161 -30353335316433313033646334613435643031303931326437623830356363666566333663666163 -34626130653936363865386236343366373337396338623663613134386564343362393533323766 -63613562343637643931346331636636363734626339353132373561353165396561303436613163 -65316636336138356563346535393239383833643366396561383664353936356136353930363534 -62623866626530613166316631383164383666613333656134383435643038643337393331343938 -65313739386364313733306136623433613735313832316130386539303761303764313034363166 -65376436643739353730633761356561663163396638633965666166343138316338366633333063 -30623736363730636263326630393632663734623431643365326361623636356265613733333130 -38616437386439623664363064356435366135323939396238643361363034353333383964643365 -34383637386465653037626662396664343063616236306636303835303833393839383838356163 -31626132613562303662323363633665636530333236643039633061343636376530623466316335 -65393163656238333262343231316330636465333934353334323563613864316431643365373065 -31633262386465316163313135613034366439663538326133646637643862363636316331386334 -31326633626335313165646364383935393731363230366532633062363134373663626263636338 -30623038333664393036373735323633663537643236356462666133653264613362373234616162 -61613565386565623466323864373861323761333230646239376238653239373365356361346637 -35376562633830633865373733613765663666393535633737373139643437383562386363333639 -31623365646137313636353131356638323064386265393039316464373635376134396165366434 -66656361356334633061323235646663323837653830343939613839333137363337363232623336 -32316139316134653031343665373765643366653662353438653430363231346230313162373537 -34643162336665613839333135663138343639363363663161356263306461366365373038366135 -33613439336331653532333038656434656465643433396232623866613265646339383865623361 -37356534346461303862303963653361393535623566396162363638333935636166623466313134 -66323034396437363766353437396536326463323933393336373062623861343730333465616463 -31333338356230623833373363386633373039346366646361366431613233303065313530386639 -32636438383336613638343833616536623531616233363564333962633062326630343263346432 -39616666363335373236376662393636336266326662653434663435356339653936616132396265 -32383763343434666664646339646466343937643331633032626563663731613131383735326536 -33653233636461363932353163326664653830656232383332343263643562323034333733636630 -32636464373832376531616235626230666336393335323533633561623036636566363332353939 -31333535323038376665393261386437306366343135393866343333623534326338323230393237 -61373236666362303731656464633935353164663164306266373562666634356336303339333565 -61643738663238663133333961346537343564343233333865366535393765373634653438356533 -35376263353236663930336461363935313566376166356432396664636632386163633635336139 -62323965613132313639326465386237366539373331653235383138653564316536363565643862 -38616135613734326136626534336432333831663634373539383663653262313062353731306236 -32366439393131653766366632373063323961633736313934643431656535653963333331366232 -33313436353231393837326334653238316635623865623936313431373761623337623537386132 -31376538306139623565636636383236636261376638303164373338663665386334356431653935 -31393436383264396234643861363466306161313465663361393236663463626231663762323132 -63373032613133313061303137616232616262376566656163373566333232336166383138336263 -37353263663361643662336139613438376131373562633439626331643263366233376665376132 -35633063636664653264626131356461646130633662666561656264313231313036363237646336 -61336262653132633465353266646638373138616334376632346437373638376662336535323339 -63313835303266393065363334616339323062366439646535393132343336373463306430353431 -33623532636665356632666434643535333635643564373861316530643034613135633335353739 -36306335373936663638366164363862303464393962326565323030303231353966363338303031 -66653863383831353763316432636366356561353465653561313735393435646432653231303566 -39326432346666653861643363323465326432353962663630303461346164303436653230306139 -65363439333561386434623463623963643763663963636464326633613138336138393461623331 -39393730303039303361386332306330653764316139356363303630316537376430393865653633 -64333965326433346633666535326236656637653333303664646238653630663436316336616463 -63343635326162366163343630623839313438356466646230353934366139313438343964326563 -65343734636334313239316263616439313935643132313363646331393464643737656536316463 -33376635383465396331386166653366326163656135633764623461376636663939373037343538 -35653339323966336330393761393736626431363039316361323733663865366138373330393362 -34616565333133316235373233303063386566396561613033643132303539663638663765346638 -62336234363739616231383739653338376266346633393139613766613039633465323263666430 -30616633323938653337353136306564613064346332383265666166306531613431383562393434 -63353332633464386235383565343139623831646631663135333665633366373533386633393338 -35623631646130326562636162333065333938313766633230353765326133323433333734373238 -34326434323337323362316161366138313262666439313262663338653938386331323463336465 -32613861623064306337663264373539326534363161383038336237386330616366353061623031 -33353838323030313838656431613036323338336139656433306266386638623838336461386635 -3236 +64363861353234366636646161303463376433333936613163333534616465656364396131356566 +3462646231663564633263643337393262316138393166330a363064663835356631306563306430 +34333362316633646236633938383933386262326261326539363334653161356361653661633631 +3739386434306666390a653839323738383832303634343232663266343935623564663364613130 +31663537393462323261646236336266656465626163653861663335323839363565653334663037 +37326263343536386466373837616636633131386436303862303334363938633466396335643431 +66636264663562646165333866666539336638653232366332633462626534656631656139343631 +63613830633561333431653562343566613266393731636134356533663161306339633333393166 +61373233353433333264663331623931656632653934633732356639323366393234663261393236 +35383237396437613031646465616164653731356439613737623239323261346133376162333238 +32373164623934313537616238323336346334393263323534333435653231623938386330366164 +38376461313639613833386162353037646265633564633736333134653461366136343034323433 +32386539323037306237356131333661633366333935393636656137383263376634626264636434 +30316665393237653338323731663132383635386131363462376539353039396266356231303230 +39613731356561616664363231643861633562376165663639386365396635376632636630373564 +35653036376165616430313230633430303636626263636663646263396563396262616564376363 +64316233313534613934303764386134306331336330303235326435356437653362326430633763 +63353261316665303262376430306230633966356139303037376538343566613061376130663230 +37323238613563393931396236383634353737346132356365356433393434396535653332376535 +64343562633337623731616263373039343839626135353537373039613063626634336333313630 +63623832316136323665643433313730373134303162306263396237613831323338363663633133 +35623264393835613338633161346435643365306664643535356638633166346234323130343264 +36313134333938373836316338343664396138373635616533663136376339376665623864346433 +33366366396130663932363336623137653562353862613932666434316262386263376535363264 +66656431653364303434656263363565663562326235366162613134666138626238663130653738 +36643535663733393634376461613634393666303136346462663261343165386234663231323233 +65653530616466373730643435613364346138383733653764656333396138633666303837356530 +38303837663930386433393535343166643937363464303539336632663231343965366361616662 +64373232306561666136613530356433316231303037386537346366626535653836303834633734 +39333833666165656138326139643063626630633864333565363764303039353563363862613937 +61353834323163396236386639323361313361323235343532316238353163343430303438396363 +31363632643836633636393037326533663037643534323334393361633737356437303737396531 +34323433313730306238633035623865393164663235363438643031653666613566316134393761 +32373161653430393233313130303361633463363439646234323963326361363361343863663633 +39373531363031323432393039333965653036336431303262626662356533326335323339656634 +61326337383039646133396166653164373733386663353836623332326131373331353231323866 +37613739333639396533343063376363343464643465623563313862626237353565376437633234 +30306133313164613230663734326565366532316232366231653232326138616636393732663365 +65353530306435353965646336626237646335393832386437666339313362656334633036396562 +66636532633733376264386562366262313965376339366434663637363766303334366136393966 +34303939333964363436643437313161616639303138383232336566356461656664616330323861 +64313338613463363962646365363336383964373330363265656230303865346538616463646232 +65366332653730656533326430376339386531376631373663373034613862623466326333353432 +38306464653466363531343166623266346663366430613937373965396165343235353366356335 +31623332323262363433306136643239373936333531663835636261613438306539336437336265 +65656630656538343533326432306631666361613130326537636166313133363037613136313064 +39666430303162323634623666636236366337316235303435353436323464343334393465663139 +65303834623665633237633064366337633336336332316262303432356336366336373231396636 +36396663373666343965306439376337663132313032376136346434393165626661363165633833 +38346634316336656635623932373338323065656231313361313633333231303839376166613661 +63653263643539613035663035353732323465393236656134383033636633303835303730373066 +31333331316537666234393533336361633366346563323632316130383366633166333138663034 +35336166663231643231346433316634633437373463313035646231336631326464393333646136 +34303561663637386335353836303263376436393736643536393763306537333334303530376165 +31643861623331613964383137326135633863323337383231363834656130343536636537303533 +39613031353361636139346439666564386237633534623162363836633937626237613738386537 +34316132363137653537303837393530356336393862316462303066306461386234386661366463 +30303931623734356163623862613262656639366139613665316166386139626438623163323365 +35366661343564366139333563633364373635303930346439613336343361633831633136323831 +62613932366534653833316461636464336239373634613836396430343566373037666461373062 +32323361623261356465656138613066363562366165303336386565393036363732653339346262 +62303763663737333938373537613861376232626235646433623465646338643861643963356232 +64383666303939373162663339383030313136643139323735353735373062666263373031653034 +38336265316161656233393933356139633834373862633838343431366331613538613461326462 +39323062366530613339356238376630643763623832363837333036343731313038386466313836 +34373663616462386336613439333532343133663337396362386366333536313466653735313930 +38636639363464306235323631666236373239393839393230363130633332376162613730393463 +38303663313737306432316361306535306662303237353264643834303136656664316130313134 +65663833376539376534653535363962313435346334336338656364653734353930316231373764 +37613962313139656131376136373838363934646264376234383038313739666335326465353831 +64613563383535643361623631373331666236353836643362626630336530353335383765346166 +32656363396163633134383632363463366336663466356464663330333962646635393366373936 +32646535336330316536613462316136356263363561326666393134306233303065336161363836 +63623964626332383330303134393236303533373364346539366430383461623032316635316635 +64356433366539313336383066346461613238643964353061373432346234623631343966313763 +65643130343331376236366639366230646566663334643331373966613336623230666364373766 +39393533353237386462616166376239373431663065623763343165623163333633646134376662 +62393738616564306230633035653733626162643734303132653766656232616537613632373066 +65653466643665306663383930616433616161646164353836633932643635303161363363616363 +32626633333361303334663962616162383765666563333738663862353632636132333664383461 +33356136323163386630396133623538376335303664323466346462306631316365303835343938 +39386663316166303333376436643430306262323936343838333761396236636161326536383439 +30393332653361303466326139656632646564633133393362646564626465353032383237316530 +32663633636435363165366531643265386331643532373166396533303462376636303736393163 +38373563613334376135333934323333323761323263303164626436646564663733633866616263 +39376338303366646638333063626261373237623731323965313665336535656530656461316338 +65353232646332636436343165663535343633323333353536323261376462306631396437633934 +62323339386230323766336263616535653236316566626536396161656138313032333737616434 +31626539396139396266656434643831316161343635303462633466616461396530306565376661 +33343437643633656230353032323462663835306538663731396135353664666137306138316132 +65396563343965396634396134383236653363376238313237613038323462646533363866343466 +32353161356131613639646637373330666136356137383162303131356633626132623931346335 +66386565616533333231343164333637323235616439613437353736613534636261646239313665 +66666535353061613464653839643830343435323535333733326432613738663135623263353563 +37623466393231303931343834313335366532633230636262363939653630333936363735613939 +38393961396366636566636665373332363032643265633638613439366238386566363364356562 +37386232663066333166303939353862316462343764353463613630626338356631626633636366 +30353938373061646663643730633033396461343230613636336633383565333734346265373034 +31656139313261613939346533623633653931613836616464616437373736636133663532383766 +37626434346263333036646462333666353534623734386335326636616331393132333437616330 +36616132643634316139343133643234303063393330363838386363323366633937383161383831 +65653530646461373238376237643134653164363863326366303831313361386539373730323736 +33303061376261303966363063666339643037363836656464356266643563353462613465626530 +63353431623934633134333935643564663534373063653865373338626430353065646632366333 +38313363323063373063666137336236373134363162663239636237343933326234393166316537 +38613761643532373861646536313230363031393064653537363939653037663433396565306634 +61353661626663373939613636626265313135313761323238646131346261303134663566633537 +35636563383165313765393732396139383633393730623062353635623566633535613263313464 +39383239613530376437663566326536336335663334346166313863386232303435363539363362 +31636632663933343335343566373336626563326634643662646332313835333630623465666531 +31343930643036313962626466653038363833376262303163333763323164643966653733616565 +66643765356232663838663939623464656333666436323336313664646266353535316365613161 +64663436373836306634303262666337643536613161386263636435356239663235343038373762 +61663464613039616232323737623139323335343230633534636463326537353431366434313361 +31343863656338666466353664316632323432636538383466613664333935366636306332323638 +30353532666566363564336564663732643664386465313533303762363865343863316538636333 +61353135376430326234653132363262666533393962326165656630363732336463346461653963 +66613138643765373037643930363530346435396461316630633363346238306439383363336430 +39656231323365343638363364343030613262323562626338636566303631346662386434663464 +61356135373965303736613465323461363363353966613731333565366234383931343963313236 +31373430303963313861306531356463376531626564613430333032643366323332613762326137 +30613937646635323230313264393032646463303931613061626133356436356464393532306137 +38343439623563393430353335386466313737326266383365656166303133343730383130353832 +64656339306264633637356536643333656239663237386534646463373964306564393162326165 +36386363646337393335666638636239373938396433333037626364383766633161393938313135 +33393564366231323934626130326134366130356665396331313436366335333732353133373464 +62613833613339316161343631626365306131393365353766646131653636656537363432363661 +34613661376638626137613265393335393632623564656166303261643030343266643434313238 +65383165373666666366343461313964326137383536623038346332656465363633633763346330 +39623930343732373461373966326663613963633862366338363539653764663534643061323661 +30393733343735613736613862613437303834313131663161346266336336626336393637366433 +64663832326135376335653835326365643865623964373633666237373966323231356332646434 +61343961356235306431666532353464326465646333373163663637366263666362343833336138 +39393031643233396362656562613864353630663731646632356436393162336630313266653535 +30346632383233386463373630343535663337663035396666303166363432646265663662623666 +63633765616437396664616465393666383234333530613031623365623435383936633438383761 +37633338373730343138386333346566376362396366643436323462613431393631363234346539 +65353164653536373938396238366338336166353536646534366437346466316237343664626234 +66663763376232663966636163336338353535616662326436393637326137316534363463366363 +39323831386661656534623236656435306364623538663433393735393337393638333838313666 +65373632323936373637626364383434333439333361313637386134656138336133646139663639 +39363033336134356632326433343764333339323864306238643262396539333932376534626336 +63613433376366313634393235356134616436356233383464386633396137383838366161643233 +61613835353035313336393031313432613231616537393235633766383366326165383162663130 +62363630373463383430363764393438626364306139646236353739626332666439626437633732 +61393031653139323730623537633766316666623263356361343730373864666161333439363438 +33356436363933363632306239326366386633356638383261646537313634326138626134386161 +36386538336533343735356432666332663664373831326235386264633139316336353464633861 +63346464326131666561386433666339643231616539653066323236306635376164366130346631 +61303034623662636331646165623162636633383839613862636466346137333166373939333239 +62336635336434623766333566346232306431623238653237376337643165666663333933333337 +35646332656337333930 From 096fdce5e4e9f48ae5829fd79f8387b43944e090 Mon Sep 17 00:00:00 2001 From: Baptiste-Ferrand Date: Sun, 1 Mar 2026 21:16:32 +0100 Subject: [PATCH 6/8] udpate network for api and bd --- ansible/roles/deploy/templates/docker-compose.j2 | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/ansible/roles/deploy/templates/docker-compose.j2 b/ansible/roles/deploy/templates/docker-compose.j2 index 31d11d7..ef74451 100644 --- a/ansible/roles/deploy/templates/docker-compose.j2 +++ b/ansible/roles/deploy/templates/docker-compose.j2 @@ -4,6 +4,12 @@ volumes: {{ grafana_volume }}: {{ prometheus_volume }}: +networks: + {{ docker_network_name }}: + external: true + internal_network: + name: trackntrain_internal_preprod + driver: bridge services: @@ -19,6 +25,8 @@ services: POSTGRES_DB: "${POSTGRES_DB}" volumes: - {{ db_volume }}:/var/lib/postgresql/data + networks: + - internal_network minio: image: minio/minio:latest @@ -80,6 +88,7 @@ services: - "com.centurylinklabs.watchtower.enable=true" networks: - {{ docker_network_name }} + - internal_network front: image: {{ front_image }} @@ -99,8 +108,4 @@ services: - "traefik.http.services.front.loadbalancer.server.port=80" - "com.centurylinklabs.watchtower.enable=true" networks: - - {{ docker_network_name }} - -networks: - {{ docker_network_name }}: - external: true \ No newline at end of file + - {{ docker_network_name }} \ No newline at end of file From aebd559241c499cd511678f7f64e5498d6177443 Mon Sep 17 00:00:00 2001 From: Baptiste-Ferrand Date: Sun, 1 Mar 2026 21:37:46 +0100 Subject: [PATCH 7/8] update domaine for minio --- ansible/host_vars/pre-prod.trackntrain.fr.yml | 305 +++++++++--------- .../roles/deploy/templates/docker-compose.j2 | 2 +- 2 files changed, 154 insertions(+), 153 deletions(-) diff --git a/ansible/host_vars/pre-prod.trackntrain.fr.yml b/ansible/host_vars/pre-prod.trackntrain.fr.yml index 1669c83..7cd85a0 100644 --- a/ansible/host_vars/pre-prod.trackntrain.fr.yml +++ b/ansible/host_vars/pre-prod.trackntrain.fr.yml @@ -1,153 +1,154 @@ $ANSIBLE_VAULT;1.1;AES256 -64363861353234366636646161303463376433333936613163333534616465656364396131356566 -3462646231663564633263643337393262316138393166330a363064663835356631306563306430 -34333362316633646236633938383933386262326261326539363334653161356361653661633631 -3739386434306666390a653839323738383832303634343232663266343935623564663364613130 -31663537393462323261646236336266656465626163653861663335323839363565653334663037 -37326263343536386466373837616636633131386436303862303334363938633466396335643431 -66636264663562646165333866666539336638653232366332633462626534656631656139343631 -63613830633561333431653562343566613266393731636134356533663161306339633333393166 -61373233353433333264663331623931656632653934633732356639323366393234663261393236 -35383237396437613031646465616164653731356439613737623239323261346133376162333238 -32373164623934313537616238323336346334393263323534333435653231623938386330366164 -38376461313639613833386162353037646265633564633736333134653461366136343034323433 -32386539323037306237356131333661633366333935393636656137383263376634626264636434 -30316665393237653338323731663132383635386131363462376539353039396266356231303230 -39613731356561616664363231643861633562376165663639386365396635376632636630373564 -35653036376165616430313230633430303636626263636663646263396563396262616564376363 -64316233313534613934303764386134306331336330303235326435356437653362326430633763 -63353261316665303262376430306230633966356139303037376538343566613061376130663230 -37323238613563393931396236383634353737346132356365356433393434396535653332376535 -64343562633337623731616263373039343839626135353537373039613063626634336333313630 -63623832316136323665643433313730373134303162306263396237613831323338363663633133 -35623264393835613338633161346435643365306664643535356638633166346234323130343264 -36313134333938373836316338343664396138373635616533663136376339376665623864346433 -33366366396130663932363336623137653562353862613932666434316262386263376535363264 -66656431653364303434656263363565663562326235366162613134666138626238663130653738 -36643535663733393634376461613634393666303136346462663261343165386234663231323233 -65653530616466373730643435613364346138383733653764656333396138633666303837356530 -38303837663930386433393535343166643937363464303539336632663231343965366361616662 -64373232306561666136613530356433316231303037386537346366626535653836303834633734 -39333833666165656138326139643063626630633864333565363764303039353563363862613937 -61353834323163396236386639323361313361323235343532316238353163343430303438396363 -31363632643836633636393037326533663037643534323334393361633737356437303737396531 -34323433313730306238633035623865393164663235363438643031653666613566316134393761 -32373161653430393233313130303361633463363439646234323963326361363361343863663633 -39373531363031323432393039333965653036336431303262626662356533326335323339656634 -61326337383039646133396166653164373733386663353836623332326131373331353231323866 -37613739333639396533343063376363343464643465623563313862626237353565376437633234 -30306133313164613230663734326565366532316232366231653232326138616636393732663365 -65353530306435353965646336626237646335393832386437666339313362656334633036396562 -66636532633733376264386562366262313965376339366434663637363766303334366136393966 -34303939333964363436643437313161616639303138383232336566356461656664616330323861 -64313338613463363962646365363336383964373330363265656230303865346538616463646232 -65366332653730656533326430376339386531376631373663373034613862623466326333353432 -38306464653466363531343166623266346663366430613937373965396165343235353366356335 -31623332323262363433306136643239373936333531663835636261613438306539336437336265 -65656630656538343533326432306631666361613130326537636166313133363037613136313064 -39666430303162323634623666636236366337316235303435353436323464343334393465663139 -65303834623665633237633064366337633336336332316262303432356336366336373231396636 -36396663373666343965306439376337663132313032376136346434393165626661363165633833 -38346634316336656635623932373338323065656231313361313633333231303839376166613661 -63653263643539613035663035353732323465393236656134383033636633303835303730373066 -31333331316537666234393533336361633366346563323632316130383366633166333138663034 -35336166663231643231346433316634633437373463313035646231336631326464393333646136 -34303561663637386335353836303263376436393736643536393763306537333334303530376165 -31643861623331613964383137326135633863323337383231363834656130343536636537303533 -39613031353361636139346439666564386237633534623162363836633937626237613738386537 -34316132363137653537303837393530356336393862316462303066306461386234386661366463 -30303931623734356163623862613262656639366139613665316166386139626438623163323365 -35366661343564366139333563633364373635303930346439613336343361633831633136323831 -62613932366534653833316461636464336239373634613836396430343566373037666461373062 -32323361623261356465656138613066363562366165303336386565393036363732653339346262 -62303763663737333938373537613861376232626235646433623465646338643861643963356232 -64383666303939373162663339383030313136643139323735353735373062666263373031653034 -38336265316161656233393933356139633834373862633838343431366331613538613461326462 -39323062366530613339356238376630643763623832363837333036343731313038386466313836 -34373663616462386336613439333532343133663337396362386366333536313466653735313930 -38636639363464306235323631666236373239393839393230363130633332376162613730393463 -38303663313737306432316361306535306662303237353264643834303136656664316130313134 -65663833376539376534653535363962313435346334336338656364653734353930316231373764 -37613962313139656131376136373838363934646264376234383038313739666335326465353831 -64613563383535643361623631373331666236353836643362626630336530353335383765346166 -32656363396163633134383632363463366336663466356464663330333962646635393366373936 -32646535336330316536613462316136356263363561326666393134306233303065336161363836 -63623964626332383330303134393236303533373364346539366430383461623032316635316635 -64356433366539313336383066346461613238643964353061373432346234623631343966313763 -65643130343331376236366639366230646566663334643331373966613336623230666364373766 -39393533353237386462616166376239373431663065623763343165623163333633646134376662 -62393738616564306230633035653733626162643734303132653766656232616537613632373066 -65653466643665306663383930616433616161646164353836633932643635303161363363616363 -32626633333361303334663962616162383765666563333738663862353632636132333664383461 -33356136323163386630396133623538376335303664323466346462306631316365303835343938 -39386663316166303333376436643430306262323936343838333761396236636161326536383439 -30393332653361303466326139656632646564633133393362646564626465353032383237316530 -32663633636435363165366531643265386331643532373166396533303462376636303736393163 -38373563613334376135333934323333323761323263303164626436646564663733633866616263 -39376338303366646638333063626261373237623731323965313665336535656530656461316338 -65353232646332636436343165663535343633323333353536323261376462306631396437633934 -62323339386230323766336263616535653236316566626536396161656138313032333737616434 -31626539396139396266656434643831316161343635303462633466616461396530306565376661 -33343437643633656230353032323462663835306538663731396135353664666137306138316132 -65396563343965396634396134383236653363376238313237613038323462646533363866343466 -32353161356131613639646637373330666136356137383162303131356633626132623931346335 -66386565616533333231343164333637323235616439613437353736613534636261646239313665 -66666535353061613464653839643830343435323535333733326432613738663135623263353563 -37623466393231303931343834313335366532633230636262363939653630333936363735613939 -38393961396366636566636665373332363032643265633638613439366238386566363364356562 -37386232663066333166303939353862316462343764353463613630626338356631626633636366 -30353938373061646663643730633033396461343230613636336633383565333734346265373034 -31656139313261613939346533623633653931613836616464616437373736636133663532383766 -37626434346263333036646462333666353534623734386335326636616331393132333437616330 -36616132643634316139343133643234303063393330363838386363323366633937383161383831 -65653530646461373238376237643134653164363863326366303831313361386539373730323736 -33303061376261303966363063666339643037363836656464356266643563353462613465626530 -63353431623934633134333935643564663534373063653865373338626430353065646632366333 -38313363323063373063666137336236373134363162663239636237343933326234393166316537 -38613761643532373861646536313230363031393064653537363939653037663433396565306634 -61353661626663373939613636626265313135313761323238646131346261303134663566633537 -35636563383165313765393732396139383633393730623062353635623566633535613263313464 -39383239613530376437663566326536336335663334346166313863386232303435363539363362 -31636632663933343335343566373336626563326634643662646332313835333630623465666531 -31343930643036313962626466653038363833376262303163333763323164643966653733616565 -66643765356232663838663939623464656333666436323336313664646266353535316365613161 -64663436373836306634303262666337643536613161386263636435356239663235343038373762 -61663464613039616232323737623139323335343230633534636463326537353431366434313361 -31343863656338666466353664316632323432636538383466613664333935366636306332323638 -30353532666566363564336564663732643664386465313533303762363865343863316538636333 -61353135376430326234653132363262666533393962326165656630363732336463346461653963 -66613138643765373037643930363530346435396461316630633363346238306439383363336430 -39656231323365343638363364343030613262323562626338636566303631346662386434663464 -61356135373965303736613465323461363363353966613731333565366234383931343963313236 -31373430303963313861306531356463376531626564613430333032643366323332613762326137 -30613937646635323230313264393032646463303931613061626133356436356464393532306137 -38343439623563393430353335386466313737326266383365656166303133343730383130353832 -64656339306264633637356536643333656239663237386534646463373964306564393162326165 -36386363646337393335666638636239373938396433333037626364383766633161393938313135 -33393564366231323934626130326134366130356665396331313436366335333732353133373464 -62613833613339316161343631626365306131393365353766646131653636656537363432363661 -34613661376638626137613265393335393632623564656166303261643030343266643434313238 -65383165373666666366343461313964326137383536623038346332656465363633633763346330 -39623930343732373461373966326663613963633862366338363539653764663534643061323661 -30393733343735613736613862613437303834313131663161346266336336626336393637366433 -64663832326135376335653835326365643865623964373633666237373966323231356332646434 -61343961356235306431666532353464326465646333373163663637366263666362343833336138 -39393031643233396362656562613864353630663731646632356436393162336630313266653535 -30346632383233386463373630343535663337663035396666303166363432646265663662623666 -63633765616437396664616465393666383234333530613031623365623435383936633438383761 -37633338373730343138386333346566376362396366643436323462613431393631363234346539 -65353164653536373938396238366338336166353536646534366437346466316237343664626234 -66663763376232663966636163336338353535616662326436393637326137316534363463366363 -39323831386661656534623236656435306364623538663433393735393337393638333838313666 -65373632323936373637626364383434333439333361313637386134656138336133646139663639 -39363033336134356632326433343764333339323864306238643262396539333932376534626336 -63613433376366313634393235356134616436356233383464386633396137383838366161643233 -61613835353035313336393031313432613231616537393235633766383366326165383162663130 -62363630373463383430363764393438626364306139646236353739626332666439626437633732 -61393031653139323730623537633766316666623263356361343730373864666161333439363438 -33356436363933363632306239326366386633356638383261646537313634326138626134386161 -36386538336533343735356432666332663664373831326235386264633139316336353464633861 -63346464326131666561386433666339643231616539653066323236306635376164366130346631 -61303034623662636331646165623162636633383839613862636466346137333166373939333239 -62336635336434623766333566346232306431623238653237376337643165666663333933333337 -35646332656337333930 +39623234393637326539386435336265303535376131393433336538333164616134303966386165 +6662303935663336643661313537333764346462326436330a656432666365363436623637353031 +65633238643230393138636236323337396239383931376539653662666431363835633863643339 +3034663933656339320a306662313632346433363939333735663865313037383134653264376463 +63663537306131623935633439663439653537393363346332356262383632363634333438353461 +38653463643462366232356432336235623261303934306463613161396561373230343165363466 +36333834326238363933643037636433326638306661393030393166303262323365333530363663 +37303135383530613235303162353037626234323536303037306364386161633435653337353035 +61376438306532643932613466346339643962336435306632623539393034383538376161326636 +31373363353636326438323665633330663530366431666166396265623062636534393538623065 +61316431623163353439346433393165353263356663626361663865323361663864306532636164 +33333430636262306165373331326365616635623934353535663362333236393238366563363231 +65393936623837396531333661323635663336363564383937383039326339653838626163306635 +38643130663462383863313962373664323033643332373531326132616633363834346437363966 +33663332343730366461643037353631643461626435626138366432303765636562353936626233 +65353434343231353231363337663133396136313664356434323864366664383261316466646135 +30323139366133383933316638306231393532663937646230306235383361393930363666336464 +38643530346338623964346536386365383764653731353166303365313939346234363765613438 +39663530396330393437303531313161613761666464653230363331386463636431643063636163 +33663235633433373832366634373166393331316265643236633835313337353034393434363438 +34366438383139366165656565363836623863393165346666396139623364373337663863386435 +35386239633963343834326163663061336332663162303935626662643033623764343065363439 +65343764656432343333386461383634663530336536613931616233306530323164316439303465 +38363861663735363262663334663233653166653331356164343065386436636330353734323566 +63626330343866663332623030366363636566653032326566653533343361626366633434316162 +37666133393737383635623866633236623165313466323436303131363663303462333863396638 +39373436643436366139336164373564326638383262363730663839636336663130386137666366 +38376635656335303366356361383766323739333366616439356638333539616530643563373934 +65663239323566366438613963656337623838636632316164303865663365653965386532313664 +37383364656237636431623263633039393862346136646532363933323538653663643637646435 +30326437663131666563383965346261636366383863646533326130386236303437333833656639 +61366534373038613135343739376337366332646334613864393738353364656235323666343965 +61333661336564636165303364343838303132656537346131306266386636313061626331663266 +33373261363338323438326366343734333537613130396332343430353631663539626239646438 +61646264383365356631363163323832313566353230376362313538633966316334313036616566 +32353834393335643636636336646535316237306430393663393037633730353662353136636366 +35333334643266316335333730666437656239613231393564653236353361373037613738363366 +39396231396639633262303932376233626462636461376533613838353664343133666537616264 +32663033393530633035326137323162653333623935653234623734646663333963373132373066 +35316234666263626365306664323933336233383333616664643962373638653835346266613834 +34623864353563613836646364346630303930373432626333313931386431306232303538343635 +39383536633463623866643961396564363862336339396337336564613064383137303334356232 +31333461306632366163353361333364396166356432626161613163396138383064333263313034 +30646330356266636465363063666161643162623430386232633737356530396534656566336565 +36303662666130343261303234373837313538323631393333333830343762633631383164623532 +66373931653239343235666664646166343631313437656462366363353636343837326636373065 +65663262666565646137643963353466356434373933363139623231323136366630366434343832 +32663737656263656132643761373838636432316366383663306433333030373235346566313830 +37633638336664383764343366653061313134356630393338363439633464393237646434316466 +33663436313232353061666564336336393133666133613839386661303836373934306466393131 +65346136613631666665396135636634356661313563373730393164643136383037333430303830 +37363662666133643537363139313864303962653236643336306631616363353063316562333163 +65323833356166313538323639343861303432656636366639363933376538656132663235386336 +65356266336137333434313033363334383539633034636638666633613035386236376333386263 +31373237336661613032653761313965373631626561663634363663613634346237396562353139 +36373134663132323931346164366537343938316430633834626263363734333438383735386263 +33343934396264363634343637643432666462313237336262646666306334633739613737656533 +39373637373132366665663561373061663365376530623738343264616166363632323564326338 +35346534336634373133633362373430386431333532616261653066633136316635633335623434 +61306165303433393366636138626665653263626164643234393563653133383564633239333630 +35336133616465616565333335393662343066376166346662303263336230613039626436356365 +61656333613864383462626339366264366534333961643130653531336336323132626131303933 +35333038616536653935616562626139393335623963653834363063396536393230633130656565 +64383363313534663435316434663061333961326565313638616265356438656334613638343237 +63656334643563313730343939393162643730313335643232306262373133313631376538316233 +35623031396637396562363433363364376132653331666664626465393565313637643464623439 +62313237376666396134653330656362346263323865616539646333313332373064653933313338 +63663939323536626530366263303961623235623136316564353030663032363335666132336535 +61353639383636663835633038343266306335653266333131383532616534383132623535633830 +35393331363534613137633963313034326664366335336566316165663832306662326661626535 +30323939326433663965316635626262633264653061646636306632333232306130373330316633 +34383165303434323362303033383837626565393661666233366133323338623831343464666436 +38363037643030666430623336646230363036393734323837373064356637386265663463363136 +62363538323834356431613733316432386161653963383938323363306366376439346139383836 +35666634613533623231303633643733313863616238313831323531376233303335356562333939 +30396332353666666165646566643337356266373238613634313563363662356364663765356236 +61623961663831303230313231326230613035313134666137313863643034636262326637636463 +66323836333463666530383366353938633730663739373730636334393832653866396161666463 +66623038323936386566646638666162313065633866363132636134343565386436616161393561 +62353061643063333735366566636331666363633730333730653030653032313436636133666136 +61323635663839316536363666663430393934373965393833333665333837636332306633343461 +62353133656564396136323639326564383133653139373161343162306438333438353439346532 +32356664636533323366363331623261323530653438353331383664323861633661376463376264 +61616536663661383161313334346339376632366164376431376231306239623137616138316664 +37356538616632313066613737396332633964393634626365346435643362653639383966303130 +62623931376234316439633538393739383533363435623837313231666239333835616663333130 +33353038316137313033656663653133616634373335616263623763663739373863626638383066 +39636132663532396638616164353864616338323539343237366638343637333732343935383132 +34323361653339303561373437313734633737663839653637663465626530343066303761633134 +61656363633336373638316564366464393963363034616365653064613965333736373864663161 +33393632656433383732343964613634633136376131333166303038363739313963353961653232 +33343037303965373165363330376638343933393963393063313761386638616631653237393961 +38313632636138393136386235373230663835613965633762636563623064366665356530306465 +30353437643231623537343763376236653232633636383530633835623362333463636263313432 +34643030313238393532323566353461313634303835353536653231343130373537663738306236 +65353432396330386439613931646635343866643734623435633832396238643139313931353432 +61646632376437343063656431356532313665396234643864326137376464393661623965343365 +32303162653461356136336566633038653631373937343764313361323731656233316464393865 +32326435346562393031353966343236336636663737623531653764386566336331306239376361 +34323734343438366136326232356365353339393364656161306131373464353366386166313933 +66343163626261623231366563396632383264626439353933656439326431643834316461633261 +39346233636463386266386164376336366638386432313463396333613839313833396361353162 +36613664353935633033393536323261316463616238333330333964653364376134653732666661 +64666236313437313666323633383634613336653536313334633039313933393130316662373330 +62376266316162666362633164616138633433653538623161656430333664653039316166386132 +34616439346331376435393431346230383932303866346462666531343830643064666136356538 +65376135653162373161323836623138626132306666353636613737383432363731643438313065 +31396435636634643230363238326665336433363664393162643762616634383133313134393164 +39383338633236613362313835616537383333346163346262353461343437626565336333393666 +34646438396533336136353637356536333237613238356537343536353834313636383964373934 +64396332373734376264356138363031636131373432353965346634313962306233616262333861 +64393661666365393139646534343539313135396439643562353834366664626566356230373964 +61373863366463613336646666306532373463663932303430643463333434653639663635393430 +61363137326639313036393430393261396337373637366137616132653266336238303131306238 +32373563633038663439376361636664363434663134343565313333656235653530303063633463 +38666639626535643066656233373063336138306362663565663037353139663465393532623232 +33346636663361626233373937666438353462353539393763323861346331656335613061623534 +34633530613132366636363237383535323064383839366330383466323931663334633739333965 +34393436373335366234363336653334313834353538346337616562663962313162613137323639 +38376264616564373336643764653939636332663735623662373966643061363562363639366331 +62366364343463643833396233633866646666616565303535613932626138353735363937333037 +66623464636532363466376137333632646435346333333336343037663836656334653435343531 +31343332653561316261356461323161343664613933316261353032376239353031316439393734 +62623436636638303931313561633566643336346634356533656366323665316532313561343362 +33616231613932326336383234613263303936663332373736343765363633366165656333653130 +61396138656134313566303662383432366561333833353862346132633064333765653237393839 +34383565646165356137653536616634666636383037613866333964363038393563353463656265 +32313733373564646466616262303661333062386234356531623966663263323861666564306634 +36356666323166656535633565393737313732633037633437373538386438313266643131653733 +37313236316466303434323235636433313865366463376562383833323635316230323735346237 +65383531353031643564646239306463663533356162623239356466326662666639613262656638 +33333838376632333864616165393736393737623338623764366561613934613066363435366166 +38363735313261656437326164616631353132313037663338363666393636393732353365343562 +37663430336136333532626461383130343261343466666562613362646131363465313438633133 +33356266613463626561333633653936313739613530626537653231393565323861303434373132 +66643232326634303433646665313739366432323762313335633362663232613333356338646661 +36396561653737383061356238663163613165306438366164303538363566303661646234626137 +34633536316635646435336333313637636664646338383433623635333236366435333466363265 +37393762663532366166386561313031373038336432616563653937383165626166333935336231 +39303464653831386430653462323765336563653032313033343232653331323464376366393161 +36643665646163636164633034353139383138373437383466623562396534353431613734376632 +38633561666164383766653834636264363333353830363533373732656235383636333931616463 +32313938336230643034623531336535383435386635643635633539336633396364313432363863 +32653565663035383466393264646264313561376565633164376138313035366664386166383135 +35313332633431396538623637613739656564663636373562383766626264383638626338663763 +65376564373736343838353661393036386333343634363334323465363531643937326364303665 +31356130326332333364326561366534326265333531623738373665653431353661663238646666 +37633237646136316463613066646664636661343561623431303161343365646135343839353933 +30323832343465396165396435363461363964313836383339383134376534373636336265356337 +37373765393866313363626165666163626337366630646538353137383234303763363666356331 +63373438653935633538353338653535376232376162613662316237313635386363616565346436 +31343062313139313463633766653863333536363263343631353166653761346132303431356139 +30313162383739663866393733663531393138313736346332323033666639363566 diff --git a/ansible/roles/deploy/templates/docker-compose.j2 b/ansible/roles/deploy/templates/docker-compose.j2 index ef74451..d2deec7 100644 --- a/ansible/roles/deploy/templates/docker-compose.j2 +++ b/ansible/roles/deploy/templates/docker-compose.j2 @@ -51,7 +51,7 @@ services: - "traefik.http.routers.minio-console.service=minio-console" - "traefik.http.services.minio-console.loadbalancer.server.port=9001" # API MinIO - - "traefik.http.routers.minio-api.rule=Host(`{{ domain_minio }}`) && PathPrefix(`/`)" + - "traefik.http.routers.minio-api.rule=Host(`{{ domain_minio_api }}`)" - "traefik.http.routers.minio-api.entrypoints=websecure" - "traefik.http.routers.minio-api.tls.certresolver=letsencrypt" - "traefik.http.routers.minio-api.service=minio-api" From 47bd9456d9a13911288b22727fb9b2c5702f084c Mon Sep 17 00:00:00 2001 From: Baptiste-Ferrand Date: Sun, 1 Mar 2026 21:51:52 +0100 Subject: [PATCH 8/8] update minio domaine --- ansible/host_vars/pre-prod.trackntrain.fr.yml | 307 +++++++++--------- 1 file changed, 154 insertions(+), 153 deletions(-) diff --git a/ansible/host_vars/pre-prod.trackntrain.fr.yml b/ansible/host_vars/pre-prod.trackntrain.fr.yml index 7cd85a0..73309bf 100644 --- a/ansible/host_vars/pre-prod.trackntrain.fr.yml +++ b/ansible/host_vars/pre-prod.trackntrain.fr.yml @@ -1,154 +1,155 @@ $ANSIBLE_VAULT;1.1;AES256 -39623234393637326539386435336265303535376131393433336538333164616134303966386165 -6662303935663336643661313537333764346462326436330a656432666365363436623637353031 -65633238643230393138636236323337396239383931376539653662666431363835633863643339 -3034663933656339320a306662313632346433363939333735663865313037383134653264376463 -63663537306131623935633439663439653537393363346332356262383632363634333438353461 -38653463643462366232356432336235623261303934306463613161396561373230343165363466 -36333834326238363933643037636433326638306661393030393166303262323365333530363663 -37303135383530613235303162353037626234323536303037306364386161633435653337353035 -61376438306532643932613466346339643962336435306632623539393034383538376161326636 -31373363353636326438323665633330663530366431666166396265623062636534393538623065 -61316431623163353439346433393165353263356663626361663865323361663864306532636164 -33333430636262306165373331326365616635623934353535663362333236393238366563363231 -65393936623837396531333661323635663336363564383937383039326339653838626163306635 -38643130663462383863313962373664323033643332373531326132616633363834346437363966 -33663332343730366461643037353631643461626435626138366432303765636562353936626233 -65353434343231353231363337663133396136313664356434323864366664383261316466646135 -30323139366133383933316638306231393532663937646230306235383361393930363666336464 -38643530346338623964346536386365383764653731353166303365313939346234363765613438 -39663530396330393437303531313161613761666464653230363331386463636431643063636163 -33663235633433373832366634373166393331316265643236633835313337353034393434363438 -34366438383139366165656565363836623863393165346666396139623364373337663863386435 -35386239633963343834326163663061336332663162303935626662643033623764343065363439 -65343764656432343333386461383634663530336536613931616233306530323164316439303465 -38363861663735363262663334663233653166653331356164343065386436636330353734323566 -63626330343866663332623030366363636566653032326566653533343361626366633434316162 -37666133393737383635623866633236623165313466323436303131363663303462333863396638 -39373436643436366139336164373564326638383262363730663839636336663130386137666366 -38376635656335303366356361383766323739333366616439356638333539616530643563373934 -65663239323566366438613963656337623838636632316164303865663365653965386532313664 -37383364656237636431623263633039393862346136646532363933323538653663643637646435 -30326437663131666563383965346261636366383863646533326130386236303437333833656639 -61366534373038613135343739376337366332646334613864393738353364656235323666343965 -61333661336564636165303364343838303132656537346131306266386636313061626331663266 -33373261363338323438326366343734333537613130396332343430353631663539626239646438 -61646264383365356631363163323832313566353230376362313538633966316334313036616566 -32353834393335643636636336646535316237306430393663393037633730353662353136636366 -35333334643266316335333730666437656239613231393564653236353361373037613738363366 -39396231396639633262303932376233626462636461376533613838353664343133666537616264 -32663033393530633035326137323162653333623935653234623734646663333963373132373066 -35316234666263626365306664323933336233383333616664643962373638653835346266613834 -34623864353563613836646364346630303930373432626333313931386431306232303538343635 -39383536633463623866643961396564363862336339396337336564613064383137303334356232 -31333461306632366163353361333364396166356432626161613163396138383064333263313034 -30646330356266636465363063666161643162623430386232633737356530396534656566336565 -36303662666130343261303234373837313538323631393333333830343762633631383164623532 -66373931653239343235666664646166343631313437656462366363353636343837326636373065 -65663262666565646137643963353466356434373933363139623231323136366630366434343832 -32663737656263656132643761373838636432316366383663306433333030373235346566313830 -37633638336664383764343366653061313134356630393338363439633464393237646434316466 -33663436313232353061666564336336393133666133613839386661303836373934306466393131 -65346136613631666665396135636634356661313563373730393164643136383037333430303830 -37363662666133643537363139313864303962653236643336306631616363353063316562333163 -65323833356166313538323639343861303432656636366639363933376538656132663235386336 -65356266336137333434313033363334383539633034636638666633613035386236376333386263 -31373237336661613032653761313965373631626561663634363663613634346237396562353139 -36373134663132323931346164366537343938316430633834626263363734333438383735386263 -33343934396264363634343637643432666462313237336262646666306334633739613737656533 -39373637373132366665663561373061663365376530623738343264616166363632323564326338 -35346534336634373133633362373430386431333532616261653066633136316635633335623434 -61306165303433393366636138626665653263626164643234393563653133383564633239333630 -35336133616465616565333335393662343066376166346662303263336230613039626436356365 -61656333613864383462626339366264366534333961643130653531336336323132626131303933 -35333038616536653935616562626139393335623963653834363063396536393230633130656565 -64383363313534663435316434663061333961326565313638616265356438656334613638343237 -63656334643563313730343939393162643730313335643232306262373133313631376538316233 -35623031396637396562363433363364376132653331666664626465393565313637643464623439 -62313237376666396134653330656362346263323865616539646333313332373064653933313338 -63663939323536626530366263303961623235623136316564353030663032363335666132336535 -61353639383636663835633038343266306335653266333131383532616534383132623535633830 -35393331363534613137633963313034326664366335336566316165663832306662326661626535 -30323939326433663965316635626262633264653061646636306632333232306130373330316633 -34383165303434323362303033383837626565393661666233366133323338623831343464666436 -38363037643030666430623336646230363036393734323837373064356637386265663463363136 -62363538323834356431613733316432386161653963383938323363306366376439346139383836 -35666634613533623231303633643733313863616238313831323531376233303335356562333939 -30396332353666666165646566643337356266373238613634313563363662356364663765356236 -61623961663831303230313231326230613035313134666137313863643034636262326637636463 -66323836333463666530383366353938633730663739373730636334393832653866396161666463 -66623038323936386566646638666162313065633866363132636134343565386436616161393561 -62353061643063333735366566636331666363633730333730653030653032313436636133666136 -61323635663839316536363666663430393934373965393833333665333837636332306633343461 -62353133656564396136323639326564383133653139373161343162306438333438353439346532 -32356664636533323366363331623261323530653438353331383664323861633661376463376264 -61616536663661383161313334346339376632366164376431376231306239623137616138316664 -37356538616632313066613737396332633964393634626365346435643362653639383966303130 -62623931376234316439633538393739383533363435623837313231666239333835616663333130 -33353038316137313033656663653133616634373335616263623763663739373863626638383066 -39636132663532396638616164353864616338323539343237366638343637333732343935383132 -34323361653339303561373437313734633737663839653637663465626530343066303761633134 -61656363633336373638316564366464393963363034616365653064613965333736373864663161 -33393632656433383732343964613634633136376131333166303038363739313963353961653232 -33343037303965373165363330376638343933393963393063313761386638616631653237393961 -38313632636138393136386235373230663835613965633762636563623064366665356530306465 -30353437643231623537343763376236653232633636383530633835623362333463636263313432 -34643030313238393532323566353461313634303835353536653231343130373537663738306236 -65353432396330386439613931646635343866643734623435633832396238643139313931353432 -61646632376437343063656431356532313665396234643864326137376464393661623965343365 -32303162653461356136336566633038653631373937343764313361323731656233316464393865 -32326435346562393031353966343236336636663737623531653764386566336331306239376361 -34323734343438366136326232356365353339393364656161306131373464353366386166313933 -66343163626261623231366563396632383264626439353933656439326431643834316461633261 -39346233636463386266386164376336366638386432313463396333613839313833396361353162 -36613664353935633033393536323261316463616238333330333964653364376134653732666661 -64666236313437313666323633383634613336653536313334633039313933393130316662373330 -62376266316162666362633164616138633433653538623161656430333664653039316166386132 -34616439346331376435393431346230383932303866346462666531343830643064666136356538 -65376135653162373161323836623138626132306666353636613737383432363731643438313065 -31396435636634643230363238326665336433363664393162643762616634383133313134393164 -39383338633236613362313835616537383333346163346262353461343437626565336333393666 -34646438396533336136353637356536333237613238356537343536353834313636383964373934 -64396332373734376264356138363031636131373432353965346634313962306233616262333861 -64393661666365393139646534343539313135396439643562353834366664626566356230373964 -61373863366463613336646666306532373463663932303430643463333434653639663635393430 -61363137326639313036393430393261396337373637366137616132653266336238303131306238 -32373563633038663439376361636664363434663134343565313333656235653530303063633463 -38666639626535643066656233373063336138306362663565663037353139663465393532623232 -33346636663361626233373937666438353462353539393763323861346331656335613061623534 -34633530613132366636363237383535323064383839366330383466323931663334633739333965 -34393436373335366234363336653334313834353538346337616562663962313162613137323639 -38376264616564373336643764653939636332663735623662373966643061363562363639366331 -62366364343463643833396233633866646666616565303535613932626138353735363937333037 -66623464636532363466376137333632646435346333333336343037663836656334653435343531 -31343332653561316261356461323161343664613933316261353032376239353031316439393734 -62623436636638303931313561633566643336346634356533656366323665316532313561343362 -33616231613932326336383234613263303936663332373736343765363633366165656333653130 -61396138656134313566303662383432366561333833353862346132633064333765653237393839 -34383565646165356137653536616634666636383037613866333964363038393563353463656265 -32313733373564646466616262303661333062386234356531623966663263323861666564306634 -36356666323166656535633565393737313732633037633437373538386438313266643131653733 -37313236316466303434323235636433313865366463376562383833323635316230323735346237 -65383531353031643564646239306463663533356162623239356466326662666639613262656638 -33333838376632333864616165393736393737623338623764366561613934613066363435366166 -38363735313261656437326164616631353132313037663338363666393636393732353365343562 -37663430336136333532626461383130343261343466666562613362646131363465313438633133 -33356266613463626561333633653936313739613530626537653231393565323861303434373132 -66643232326634303433646665313739366432323762313335633362663232613333356338646661 -36396561653737383061356238663163613165306438366164303538363566303661646234626137 -34633536316635646435336333313637636664646338383433623635333236366435333466363265 -37393762663532366166386561313031373038336432616563653937383165626166333935336231 -39303464653831386430653462323765336563653032313033343232653331323464376366393161 -36643665646163636164633034353139383138373437383466623562396534353431613734376632 -38633561666164383766653834636264363333353830363533373732656235383636333931616463 -32313938336230643034623531336535383435386635643635633539336633396364313432363863 -32653565663035383466393264646264313561376565633164376138313035366664386166383135 -35313332633431396538623637613739656564663636373562383766626264383638626338663763 -65376564373736343838353661393036386333343634363334323465363531643937326364303665 -31356130326332333364326561366534326265333531623738373665653431353661663238646666 -37633237646136316463613066646664636661343561623431303161343365646135343839353933 -30323832343465396165396435363461363964313836383339383134376534373636336265356337 -37373765393866313363626165666163626337366630646538353137383234303763363666356331 -63373438653935633538353338653535376232376162613662316237313635386363616565346436 -31343062313139313463633766653863333536363263343631353166653761346132303431356139 -30313162383739663866393733663531393138313736346332323033666639363566 +66643834353263393963313130386431346332323035653363303437396534653237383863396162 +6532383339646435656364666234383433313562656332390a393362366136613735663934393238 +63306538633334333938336361363530333861313463363835356134376162343864656634626164 +6232353333313438380a336432666635303766626436646465653530313164633530306164306634 +32306361646563646363373563313037343333373037363166303539383761633465653462633134 +37306633386564366434353338383765623164656335333966613965653537653233383963393131 +31353865333238326366346661646366336535333763323637303330393831396336323238646336 +63323464646636373766616632323239633266346533366334396132393633633131343530393361 +33666334346565316561653563343265343536323833313865663730646164343339316364373465 +32653336313265363039393464626430666438633264346562663465396364356233653563356466 +38373239343335393662316461326361626134363663346535653630383339636339333564366137 +66663962623337626164323036383063343639626166323937326335666639626630656565353932 +38326135363238633537323734336339303438373365333937653563636432656432643138633363 +38306435363865363530356462343339323862653063643930666161323937663366393933396664 +33633534646361386531346461366134353666653938623264383531303839303434313962373163 +33323431393061353834633833306337353432356461386432363338393364653733346564613634 +31336635643838323835336439363365333338623765646532313366653930346330353238343866 +37656635353461383838623938343465616433643763393232303439313963363838306562383764 +65663330393163323931363765626566646432366133636230663461346565646165363035663637 +30356231343930353034333230356265633262653961643431376336633834353639643736363962 +36303135646333366230613738316535323636656534626462373566653136636535313265396431 +64326237316532303761393664386337323435366539303663633839333366373361313063383432 +38653737613866626365643630646634626263393431623430353162663562636166383662383938 +32663464376161393639396166373165306466616533306439613464343737623166646462633039 +61336638663566646264386463663232653036366639666131313237333064666663633035663261 +64313865633433313936613933376563383130623538373761626164366433343430616139326134 +37356138346166626462636231366534376539336535396139343339313938333537396330313632 +62366239363165613562323763373765343938613337633130333537623733336332356433663934 +31373635356234616362333836306266616162386663316561666134663736656566653562633330 +32666233616464623738346561363731636266386135363831323938613031396161656233626434 +66636337663739343366323037323161386131373932333530656534316436306531643935663338 +35303465633934313139663236306434323664363066356136366130336433653433663461336539 +39363034646138346436663435316136383139646566343934383935316133613535313261306138 +36613966623135326433323232666235336533333132613262336438633138363839346234393039 +65313161363837373434303464343430376335323632363166336463333530613230376239636439 +38666166386666393935316133326466326531653066396231613166343830653864636665663761 +62326637626139613864356633333063353631396437333264373638323063323632366362366631 +30353938633633613232333235386230346238626431653030323664323966386661313530376361 +64636364656631663865643437383635643138306239366165353237383263613563646430613231 +38343138346563363338383765336230366631653931363964366633333861626632313030326233 +39353339613566613333626266656436633066633939613337373437346634336133393136353132 +66383035633363663537323437373630383937326432323130393863353335636666306339363462 +62613063393161383936336134383861373439636366643661656237343334316163633563323164 +33356635663333343534633632613732623831653130616239386537366434656561653136633766 +30636665386531373631323438343833646632303330343865343535663635386166333835353833 +36366432613734373732383431326561326234316535346433343363306338623537373034386665 +37326231633532656137313332616266386364316431346130646266666437623935613563626265 +38636136343864636533383762303261643737626338376335623930306465653933643534356133 +36396435353162366363383538363666653663383836653563383637343566303834376363373035 +63346338616436306133393163613237376434633037306633623665396463396433633339653866 +38623536303266343062386535353230343862393137306265353532356130313162636232616133 +33626435323139396535386135653035366633326630623931326531383964306333626635393963 +32376333313434633664353561613461633431663839623462313566336130363933313335396633 +64313437666663306134396231633261666137356332376162323636326135646639613132333333 +33336337386633343330343264313535333634663830366633303862353436353136616639326433 +36663936393861323064373237643862653732323934613366356535303935373430633032393632 +36303136653064666235663062653339356635636135333966666337346665323964383031613865 +61346436623539376137366362346435633833303833303231653038643765383234353132613064 +37643839643732373835313637626537613239393266343332613732316631643633653462383837 +63376430666631643962343337306666623639653936323662396165613837396664303338343830 +63626439356432623663336363613930366564303239393935643732333430376432613130623732 +33663364306366366232353034323439376131373366643634643166376532316531393935373833 +65303437383164663539316535636263333638383438366131323466353236373263643331663239 +35636432376139326265636162336334393135326131376464656536373764336362396164636231 +35363832626436306633343338383737383334643063343165633965323239383235343935396532 +61646564643331376339303530353435323539663930353333303734313135333862306636356439 +37623638633533613238303633376366643636373235306463633537316635336632653563666635 +34323833346437656430346531643265666561633461353635323862613261613337633563666632 +38636437656131343132313830643335383163333935363231636635366232363235316238666364 +65363464626463343931356634623864663539383539613765316562623933373762373738653435 +33313536656634346262396530336434653763626535363764393966303536336263316635363136 +62333039663361356130663364343739626239333961646165373362386438356466373266643665 +31343633303536373038366531393866313535623264626136366233393039393837346434656131 +37643033646430386634623162613030393262356538316336666333653063643538616662653330 +64336661386236653438366366303535646431303133666365313231383839333539356562656361 +65643563633163373531343634373433386239383366326564353137303133366463323465306666 +61323634666266643939303838623936323537646130326264383561643730343538663464333135 +34623737636632663831306330323734376330656133623533343964626264363564366636616537 +62623166656361663863313663666334343363376531396664363162383763613466656261623164 +66326331306664306533353562613765386435643562303339376564633433333431653262653738 +63623732343238373365643362356662663836383139376661353233373535366131313130363935 +63616162313734653061646332393233333432313431393335616663643364316165646532383038 +33383163393539303463666335333736646265356661616131333230306630633937313830353361 +62636634363338383335353364383134343562613162343433393337346432643061333866396637 +66386434623032643663306461383337356361323239633837376165663231333363356139346530 +33613535393665616432306435323363616539303665653734656561366162333962323262373561 +65326134343261653462663266623935343231323639623435643430313630653530323433626237 +63643837393134336633663065386432383631343638626535386362636136636166616365393530 +35633839323331626131623731396134373037356337626263306337653364303366616466666233 +32613264656239643461353137383664626665306433306131356537393861363961363861663836 +35366634336338323732316565663730333162353833383934386434626230613530633063383137 +31613532326265353437373533363132353632383261633537653763663832373964623636393763 +36663833306263656139343535343262346430323931663135373338616138363236633230323230 +63353431303964303139303462353161336463633630623236346635333862306362363463663230 +61656339366432373030633238633863643535366434383838396632646531366664303761373338 +65336562356230626631636165373661613861656264383030306330663830663835626666333637 +36303130636130336235306463313864316363343635633331626632343333393564366562613639 +62636530663139666636323766626563616238356562393231353266653961346563643464633266 +39346361623732613966636463613935646434333330396230333836306530616438643661653834 +64363930643332663262373664343938333562613938663538313166383039303864643339646163 +35636638396265396263393037633064383136646635336335656430613163613738643431383163 +35336463373931306334653664363536393730343439303534316664623433623463613239353230 +62326632323536306363656235653665303630393437383164323535303931653963643662613434 +33613761303039626531396139376161623762613531323964653561333462343865356564393865 +64663365626366346430323465626436346636643337346135366430663862306137666463333735 +38343438353138643435343538393461393763613232376664343934353262633365653138613763 +64366430656436326536643736353839653330656136663761346238373862333163393737306632 +30616437363163343034313933356337363531306337326134633637363530653764316534343364 +39306463346465326432333964303031616465336361366436303130333534613633316532323664 +32393830613364343935343665386264656431626333336466306565323563636432396164646233 +61306637623461323238343466303862663165633737323936366130383863373062356539626437 +30366338666233383066656532636138316662666630306138363735626464363431313533383364 +37323936386537363563353565343364373466343765646231323337636266333961363866353131 +66616665623835346234366161343830363061366139343633646166346562313432323639653839 +66396139313662633930383732393062306639313566653538653666313735376135353337653635 +61353466316439323664333838346131303137323761653630353533313435336461366532626166 +30356239366137313430363733396462663533613366376234616135306636613664336566303032 +34653536303563626566646233303666303838353336326438656466643361653936313030366662 +34613537303238303931356437656535313231393165643430303938346663303730336362663632 +64633165323637366263316663376537373930333036616537323535633734353337363964333931 +65356662396239383665306563616465626633626339643139666564643036383566373236663339 +36666436303830616438303037373631656164623935646261313736356163383936383565663235 +39333866386339383663316432326537313934343032646536663936633664623834646365303661 +31663863376665386536666236376361633234633664656162643035373439383235326562636635 +33306366343135656561363761356330306166303038636464366537613863306235353362623730 +36356132393934323136376636333264633030303062623064363566633365646230656265373236 +31313930366466373939383365666239636235646661633863336139366234356331653563633136 +31613130306132393165383338663637333062393537646238626338393938326130373466653332 +31323566346130633930333161323362323933653138656361323262323335373763623637353161 +65663663383433333363376664313537633662313166346130663632333736313938363634646633 +38623135333831666631623439356663663961616630323534396435666634353435363536313138 +31663336393232643064376464613830373434303234383461316139343864623866346665373036 +65633163353961396433623363643833646138333666316665656566636138333539353236353236 +65616363643963646533616639643432313262623163633035326334613161323666376364623065 +64396331353861656533303635343538373431663765306161316234343462666165326261323963 +36313764616230636139613263336366346239656330326162353561343237386537366461623463 +36346439613330626134323364626232623461633830326338663363306239613735353561623162 +35343763396265643562623663373463623032373439363236616465373163353134373366346361 +65613761663933633031373863393733613862353166653935363938353266343566343434363137 +32333532343830323835616535313231663630313766356134373234346238373732373465306461 +37613836326162373137646365616234303364646437326165666434396563323262326238323362 +31636331393833616365373933376662666530316138393262306432323139353039663431616431 +61636337323536343738306236346230623365396638656232323736643262346663313562323236 +37353931326439363362633834646534633235653238373036323330346461333135663330396663 +66653261333330653336373435316366363666393830636363323165663838626130333366346561 +38373962663338646464653135323337303730623430373763323135333931336163303432313663 +36353435303965386438626136623565353264353964656131363862643535633737363439613261 +33643935623865363564396635613261363237623237326338353766393763636230663961363034 +66366163643937653261336362636630323132316433363231323230323532663430656135623362 +61386435636130623035356639336238326534343762306439386338323334666664316164343565 +36646335363632313737373961363662626662396266333235313833346661653461616661643634 +38623333663762303635626332633137636461623434396630373463383538383462633766356135 +61363962316161336466363531343938373233633632663539326462613436363837323130663131 +3664396664633038626432396164333938643936363565333333