cicd: expanded ansible template production instances
This commit is contained in:
parent
a9693513c0
commit
4a217ca33b
581
.gitlab-ci.yml
581
.gitlab-ci.yml
@ -124,811 +124,320 @@ publish:
|
|||||||
## LIVE DEPLOYMENTS ##
|
## LIVE DEPLOYMENTS ##
|
||||||
|
|
||||||
community:
|
community:
|
||||||
stage: deployment
|
extends: .ansible
|
||||||
environment:
|
environment:
|
||||||
name: community
|
name: community
|
||||||
url: https://community.startinblox.com
|
url: https://community.startinblox.com
|
||||||
before_script:
|
|
||||||
- npm ci --cache .npm --prefer-offline --only=production
|
|
||||||
script:
|
|
||||||
- echo "$APP_CONFIG_COMMUNITY" > config.json
|
|
||||||
- echo "$SSH_DEPLOY_KEY" | tr -d '\r' > gitlab.key && chmod 600 gitlab.key
|
|
||||||
- npm run build
|
|
||||||
- scp -i gitlab.key -o StrictHostKeyChecking=no -r dist/* community@astral.startinblox.com:~/front/
|
|
||||||
only:
|
|
||||||
- master
|
|
||||||
when: manual
|
when: manual
|
||||||
tags:
|
|
||||||
- deploy
|
|
||||||
|
|
||||||
nantes:
|
nantes:
|
||||||
stage: deployment
|
extends: .ansible
|
||||||
environment:
|
environment:
|
||||||
name: nantes
|
name: nantes
|
||||||
url: https://app.nantes.happy-dev.fr
|
url: https://app.nantes.happy-dev.fr
|
||||||
before_script:
|
|
||||||
- npm ci --cache .npm --prefer-offline --only=production
|
|
||||||
script:
|
|
||||||
- echo "$APP_CONFIG_NANTESHD" > config.json
|
|
||||||
- echo "$SSH_DEPLOY_KEY" | tr -d '\r' > gitlab.key && chmod 600 gitlab.key
|
|
||||||
- npm run build
|
|
||||||
- scp -i gitlab.key -o StrictHostKeyChecking=no -r dist/* nantes@ssh-nantes.happy-dev.fr:~/sib/www/
|
|
||||||
only:
|
|
||||||
- master
|
|
||||||
when: manual
|
when: manual
|
||||||
tags:
|
|
||||||
- deploy
|
|
||||||
|
|
||||||
paris:
|
paris:
|
||||||
stage: deployment
|
extends: .ansible
|
||||||
environment:
|
environment:
|
||||||
name: paris
|
name: paris
|
||||||
url: https://app.paris.happy-dev.fr
|
url: https://app.paris.happy-dev.fr
|
||||||
before_script:
|
|
||||||
- npm ci --cache .npm --prefer-offline --only=production
|
|
||||||
script:
|
|
||||||
- echo "$APP_CONFIG_PARIS" > config.json
|
|
||||||
- echo "$SSH_DEPLOY_KEY" | tr -d '\r' > gitlab.key && chmod 600 gitlab.key
|
|
||||||
- npm run build
|
|
||||||
- scp -i gitlab.key -o StrictHostKeyChecking=no -r dist/* paris@ssh-paris.happy-dev.fr:~/sib/www/
|
|
||||||
only:
|
|
||||||
- master
|
|
||||||
when: manual
|
when: manual
|
||||||
tags:
|
|
||||||
- deploy
|
|
||||||
|
|
||||||
smarttoulouse:
|
smarttoulouse:
|
||||||
stage: deployment
|
extends: .ansible
|
||||||
environment:
|
environment:
|
||||||
name: smarttoulouse
|
name: smarttoulouse
|
||||||
url: https://smart-toulouse.happy-dev.fr
|
url: https://smart-toulouse.happy-dev.fr
|
||||||
before_script:
|
|
||||||
- npm ci --cache .npm --prefer-offline --only=production
|
|
||||||
script:
|
|
||||||
- echo "$APP_CONFIG_SMARTTOULOUSE" > config.json
|
|
||||||
- echo "$SSH_DEPLOY_KEY" | tr -d '\r' > gitlab.key && chmod 600 gitlab.key
|
|
||||||
- npm run build
|
|
||||||
- scp -i gitlab.key -o StrictHostKeyChecking=no -r dist/* smart-toulouse@ssh-smart-toulouse.happy-dev.fr:~/www/
|
|
||||||
only:
|
|
||||||
- master
|
|
||||||
when: manual
|
when: manual
|
||||||
tags:
|
tags:
|
||||||
- deploy
|
- deploy
|
||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
stage: deployment
|
extends: .ansible
|
||||||
environment:
|
environment:
|
||||||
name: volumes
|
name: volumes
|
||||||
url: https://volumes.hubl.world
|
url: https://volumes.hubl.world
|
||||||
before_script:
|
|
||||||
- npm ci --cache .npm --prefer-offline --only=production
|
|
||||||
script:
|
|
||||||
- echo "$APP_CONFIG_VOLUMES" > config.json
|
|
||||||
- echo "$SSH_DEPLOY_KEY" | tr -d '\r' > gitlab.key && chmod 600 gitlab.key
|
|
||||||
- npm run build
|
|
||||||
- scp -i gitlab.key -o StrictHostKeyChecking=no -r dist/* volumes-sib@astral.startinblox.com:~/front/
|
|
||||||
only:
|
|
||||||
- master
|
|
||||||
when: manual
|
when: manual
|
||||||
tags:
|
|
||||||
- deploy
|
|
||||||
|
|
||||||
communityhubl:
|
communityhubl:
|
||||||
stage: deployment
|
extends: .ansible
|
||||||
environment:
|
environment:
|
||||||
name: communityhubl
|
name: communityhubl
|
||||||
url: https://community.hubl.world
|
url: https://community.hubl.world
|
||||||
before_script:
|
|
||||||
- npm ci --cache .npm --prefer-offline --only=production
|
|
||||||
script:
|
|
||||||
- echo "$APP_CONFIG_HUBL_COMMUNITY" > config.json
|
|
||||||
- echo "$SSH_DEPLOY_KEY" | tr -d '\r' > gitlab.key && chmod 600 gitlab.key
|
|
||||||
- npm run build
|
|
||||||
- scp -i gitlab.key -o StrictHostKeyChecking=no -r dist/* community-hubl@astral.startinblox.com:~/front/
|
|
||||||
only:
|
|
||||||
- master
|
|
||||||
when: manual
|
when: manual
|
||||||
tags:
|
|
||||||
- deploy
|
|
||||||
|
|
||||||
playground:
|
playground:
|
||||||
stage: deployment
|
extends: .ansible
|
||||||
environment:
|
environment:
|
||||||
name: playground
|
name: playground
|
||||||
url: https://playground.hubl.world
|
url: https://playground.hubl.world
|
||||||
before_script:
|
|
||||||
- npm ci --cache .npm --prefer-offline --only=production
|
|
||||||
script:
|
|
||||||
- echo "$APP_CONFIG_PLAYGROUND" > config.json
|
|
||||||
- echo "$SSH_DEPLOY_KEY" | tr -d '\r' > gitlab.key && chmod 600 gitlab.key
|
|
||||||
- npm run build
|
|
||||||
- scp -i gitlab.key -o StrictHostKeyChecking=no -r dist/* playground@astral.startinblox.com:~/front/
|
|
||||||
only:
|
|
||||||
- master
|
|
||||||
when: manual
|
when: manual
|
||||||
tags:
|
|
||||||
- deploy
|
|
||||||
|
|
||||||
casaco:
|
casaco:
|
||||||
stage: deployment
|
extends: .ansible
|
||||||
environment:
|
environment:
|
||||||
name: casaco
|
name: casaco
|
||||||
url: https://casaco.hubl.world
|
url: https://casaco.hubl.world
|
||||||
before_script:
|
|
||||||
- npm ci --cache .npm --prefer-offline --only=production
|
|
||||||
script:
|
|
||||||
- echo "$APP_CONFIG_CASACO" > config.json
|
|
||||||
- echo "$SSH_DEPLOY_KEY" | tr -d '\r' > gitlab.key && chmod 600 gitlab.key
|
|
||||||
- npm run build
|
|
||||||
- scp -i gitlab.key -o StrictHostKeyChecking=no -r dist/* casaco@astral.startinblox.com:~/front/
|
|
||||||
only:
|
|
||||||
- master
|
|
||||||
when: manual
|
when: manual
|
||||||
tags:
|
|
||||||
- deploy
|
|
||||||
|
|
||||||
opteos:
|
opteos:
|
||||||
stage: deployment
|
extends: .ansible
|
||||||
environment:
|
environment:
|
||||||
name: opteos
|
name: opteos
|
||||||
url: https://opteos.hubl.world
|
url: https://opteos.hubl.world
|
||||||
before_script:
|
|
||||||
- npm ci --cache .npm --prefer-offline --only=production
|
|
||||||
script:
|
|
||||||
- echo "$APP_CONFIG_OPTEOS" > config.json
|
|
||||||
- echo "$SSH_DEPLOY_KEY" | tr -d '\r' > gitlab.key && chmod 600 gitlab.key
|
|
||||||
- npm run build
|
|
||||||
- scp -i gitlab.key -o StrictHostKeyChecking=no -r dist/* opteos@astral.startinblox.com:~/front/
|
|
||||||
only:
|
|
||||||
- master
|
|
||||||
when: manual
|
when: manual
|
||||||
tags:
|
|
||||||
- deploy
|
|
||||||
|
|
||||||
fnk:
|
fnk:
|
||||||
stage: deployment
|
extends: .ansible
|
||||||
environment:
|
environment:
|
||||||
name: fnk
|
name: fnk
|
||||||
url: https://fnk.hubl.world
|
url: https://fnk.hubl.world
|
||||||
before_script:
|
|
||||||
- npm ci --cache .npm --prefer-offline --only=production
|
|
||||||
script:
|
|
||||||
- echo "$APP_CONFIG_FNK" > config.json
|
|
||||||
- echo "$SSH_DEPLOY_KEY" | tr -d '\r' > gitlab.key && chmod 600 gitlab.key
|
|
||||||
- npm run build
|
|
||||||
- scp -i gitlab.key -o StrictHostKeyChecking=no -r dist/* fnk@astral.startinblox.com:~/front/
|
|
||||||
only:
|
|
||||||
- master
|
|
||||||
when: manual
|
when: manual
|
||||||
tags:
|
tags:
|
||||||
- deploy
|
- deploy
|
||||||
|
|
||||||
labriqueterie:
|
labriqueterie:
|
||||||
stage: deployment
|
extends: .ansible
|
||||||
environment:
|
environment:
|
||||||
name: labriqueterie
|
name: labriqueterie
|
||||||
url: https://labriqueterie.hubl.world
|
url: https://labriqueterie.hubl.world
|
||||||
before_script:
|
|
||||||
- npm ci --cache .npm --prefer-offline --only=production
|
|
||||||
script:
|
|
||||||
- echo "$APP_CONFIG_LABRIQUETERIE" > config.json
|
|
||||||
- echo "$SSH_DEPLOY_KEY" | tr -d '\r' > gitlab.key && chmod 600 gitlab.key
|
|
||||||
- npm run build
|
|
||||||
- scp -i gitlab.key -o StrictHostKeyChecking=no -r dist/* labriqueterie@astral.startinblox.com:~/front/
|
|
||||||
only:
|
|
||||||
- master
|
|
||||||
when: manual
|
when: manual
|
||||||
tags:
|
|
||||||
- deploy
|
|
||||||
|
|
||||||
facttic:
|
facttic:
|
||||||
stage: deployment
|
extends: .ansible
|
||||||
environment:
|
environment:
|
||||||
name: facttic
|
name: facttic
|
||||||
url: https://facttic.hubl.world
|
url: https://facttic.hubl.world
|
||||||
before_script:
|
|
||||||
- npm ci --cache .npm --prefer-offline --only=production
|
|
||||||
script:
|
|
||||||
- echo "$APP_CONFIG_FACTTIC" > config.json
|
|
||||||
- echo "$SSH_DEPLOY_KEY" | tr -d '\r' > gitlab.key && chmod 600 gitlab.key
|
|
||||||
- npm run build
|
|
||||||
- scp -i gitlab.key -o StrictHostKeyChecking=no -r dist/* facttic@astral.startinblox.com:~/front/
|
|
||||||
only:
|
|
||||||
- master
|
|
||||||
when: manual
|
when: manual
|
||||||
tags:
|
|
||||||
- deploy
|
|
||||||
|
|
||||||
cotech:
|
cotech:
|
||||||
stage: deployment
|
extends: .ansible
|
||||||
environment:
|
environment:
|
||||||
name: cotech
|
name: cotech
|
||||||
url: https://hubl.coops.tech
|
url: https://hubl.coops.tech
|
||||||
before_script:
|
|
||||||
- npm ci --cache .npm --prefer-offline --only=production
|
|
||||||
script:
|
|
||||||
- echo "$APP_CONFIG_COTECH" > config.json
|
|
||||||
- echo "$SSH_DEPLOY_KEY" | tr -d '\r' > gitlab.key && chmod 600 gitlab.key
|
|
||||||
- npm run build
|
|
||||||
- scp -i gitlab.key -o StrictHostKeyChecking=no -r dist/* cotech@astral.startinblox.com:~/front/
|
|
||||||
only:
|
|
||||||
- master
|
|
||||||
when: manual
|
when: manual
|
||||||
tags:
|
|
||||||
- deploy
|
|
||||||
|
|
||||||
lelaptop:
|
lelaptop:
|
||||||
stage: deployment
|
extends: .ansible
|
||||||
environment:
|
environment:
|
||||||
name: lelaptop
|
name: lelaptop
|
||||||
url: https://lelaptop.hubl.world
|
url: https://lelaptop.hubl.world
|
||||||
before_script:
|
|
||||||
- npm ci --cache .npm --prefer-offline --only=production
|
|
||||||
script:
|
|
||||||
- echo "$APP_CONFIG_LELAPTOP" > config.json
|
|
||||||
- echo "$SSH_DEPLOY_KEY" | tr -d '\r' > gitlab.key && chmod 600 gitlab.key
|
|
||||||
- npm run build
|
|
||||||
- scp -i gitlab.key -o StrictHostKeyChecking=no -r dist/* lelaptop@astral.startinblox.com:~/front/
|
|
||||||
only:
|
|
||||||
- master
|
|
||||||
when: manual
|
when: manual
|
||||||
tags:
|
|
||||||
- deploy
|
|
||||||
|
|
||||||
virtualassembly:
|
virtualassembly:
|
||||||
stage: deployment
|
extends: .ansible
|
||||||
environment:
|
environment:
|
||||||
name: virtualassembly
|
name: virtualassembly
|
||||||
url: https://virtual-assembly.hubl.world
|
url: https://virtual-assembly.hubl.world
|
||||||
before_script:
|
|
||||||
- npm ci --cache .npm --prefer-offline --only=production
|
|
||||||
script:
|
|
||||||
- echo "$APP_CONFIG_VIRTUAL_ASS" > config.json
|
|
||||||
- echo "$SSH_DEPLOY_KEY" | tr -d '\r' > gitlab.key && chmod 600 gitlab.key
|
|
||||||
- npm run build
|
|
||||||
- scp -i gitlab.key -o StrictHostKeyChecking=no -r dist/* virtual-assembly@astral.startinblox.com:~/front/
|
|
||||||
only:
|
|
||||||
- master
|
|
||||||
when: manual
|
when: manual
|
||||||
tags:
|
|
||||||
- deploy
|
|
||||||
|
|
||||||
ouisharequebec:
|
ouisharequebec:
|
||||||
stage: deployment
|
extends: .ansible
|
||||||
environment:
|
environment:
|
||||||
name: ouisharequebec
|
name: ouisharequebec
|
||||||
url: https://ouishare-quebec.hubl.world
|
url: https://ouishare-quebec.hubl.world
|
||||||
before_script:
|
|
||||||
- npm ci --cache .npm --prefer-offline --only=production
|
|
||||||
script:
|
|
||||||
- echo "$APP_CONFIG_OUISHARE" > config.json
|
|
||||||
- echo "$SSH_DEPLOY_KEY" | tr -d '\r' > gitlab.key && chmod 600 gitlab.key
|
|
||||||
- npm run build
|
|
||||||
- scp -i gitlab.key -o StrictHostKeyChecking=no -r dist/* ouishare-quebec@astral.startinblox.com:~/front/
|
|
||||||
only:
|
|
||||||
- master
|
|
||||||
when: manual
|
when: manual
|
||||||
tags:
|
|
||||||
- deploy
|
|
||||||
|
|
||||||
nouvelleaquitaine:
|
nouvelleaquitaine:
|
||||||
stage: deployment
|
extends: .ansible
|
||||||
environment:
|
environment:
|
||||||
name: nouvelleaquitaine
|
name: nouvelleaquitaine
|
||||||
url: https://app.nouvelle-aquitaine.happy-dev.fr
|
url: https://app.nouvelle-aquitaine.happy-dev.fr
|
||||||
before_script:
|
|
||||||
- npm ci --cache .npm --prefer-offline --only=production
|
|
||||||
script:
|
|
||||||
- echo "$APP_CONFIG_NVLE_AQ" > config.json
|
|
||||||
- echo "$SSH_DEPLOY_KEY" | tr -d '\r' > gitlab.key && chmod 600 gitlab.key
|
|
||||||
- npm run build
|
|
||||||
- scp -i gitlab.key -o StrictHostKeyChecking=no -r dist/* nouvelle-aquitaine@ssh-nouvelle-aquitaine.happy-dev.fr:~/front/
|
|
||||||
only:
|
|
||||||
- master
|
|
||||||
when: manual
|
when: manual
|
||||||
tags:
|
|
||||||
- deploy
|
|
||||||
|
|
||||||
paca:
|
paca:
|
||||||
stage: deployment
|
extends: .ansible
|
||||||
environment:
|
environment:
|
||||||
name: paca
|
name: paca
|
||||||
url: https://app.paca.happy-dev.fr
|
url: https://app.paca.happy-dev.fr
|
||||||
before_script:
|
|
||||||
- npm ci --cache .npm --prefer-offline --only=production
|
|
||||||
script:
|
|
||||||
- echo "$APP_CONFIG_PACA" > config.json
|
|
||||||
- echo "$SSH_DEPLOY_KEY" | tr -d '\r' > gitlab.key && chmod 600 gitlab.key
|
|
||||||
- npm run build
|
|
||||||
- scp -i gitlab.key -o StrictHostKeyChecking=no -r dist/* paca@ssh-paca.happy-dev.fr:~/front/
|
|
||||||
only:
|
|
||||||
- master
|
|
||||||
when: manual
|
when: manual
|
||||||
tags:
|
|
||||||
- deploy
|
|
||||||
|
|
||||||
strasbourg:
|
strasbourg:
|
||||||
stage: deployment
|
extends: .ansible
|
||||||
environment:
|
environment:
|
||||||
name: strasbourg
|
name: strasbourg
|
||||||
url: https://app.strasbourg.happy-dev.fr
|
url: https://app.strasbourg.happy-dev.fr
|
||||||
before_script:
|
|
||||||
- npm ci --cache .npm --prefer-offline --only=production
|
|
||||||
script:
|
|
||||||
- echo "$APP_CONFIG_STRASBOURG" > config.json
|
|
||||||
- echo "$SSH_DEPLOY_KEY" | tr -d '\r' > gitlab.key && chmod 600 gitlab.key
|
|
||||||
- npm run build
|
|
||||||
- scp -i gitlab.key -o StrictHostKeyChecking=no -r dist/* strasbourg@ssh-strasbourg.happy-dev.fr:~/front/
|
|
||||||
only:
|
|
||||||
- master
|
|
||||||
when: manual
|
when: manual
|
||||||
tags:
|
|
||||||
- deploy
|
|
||||||
|
|
||||||
bretagne:
|
bretagne:
|
||||||
stage: deployment
|
extends: .ansible
|
||||||
environment:
|
environment:
|
||||||
name: bretagne
|
name: bretagne
|
||||||
url: https://app.bretagne.happy-dev.fr
|
url: https://app.bretagne.happy-dev.fr
|
||||||
before_script:
|
|
||||||
- npm ci --cache .npm --prefer-offline --only=production
|
|
||||||
script:
|
|
||||||
- echo "$APP_CONFIG_BRETAGNE" > config.json
|
|
||||||
- echo "$SSH_DEPLOY_KEY" | tr -d '\r' > gitlab.key && chmod 600 gitlab.key
|
|
||||||
- npm run build
|
|
||||||
- scp -i gitlab.key -o StrictHostKeyChecking=no -r dist/* bretagne@ssh-bretagne.happy-dev.fr:~/front/
|
|
||||||
only:
|
|
||||||
- master
|
|
||||||
when: manual
|
when: manual
|
||||||
tags:
|
|
||||||
- deploy
|
|
||||||
|
|
||||||
lemans:
|
lemans:
|
||||||
stage: deployment
|
extends: .ansible
|
||||||
environment:
|
environment:
|
||||||
name: lemans
|
name: lemans
|
||||||
url: https://app.lemans.happy-dev.fr
|
url: https://app.lemans.happy-dev.fr
|
||||||
before_script:
|
|
||||||
- npm ci --cache .npm --prefer-offline --only=production
|
|
||||||
script:
|
|
||||||
- echo "$APP_CONFIG_LEMANS" > config.json
|
|
||||||
- echo "$SSH_DEPLOY_KEY" | tr -d '\r' > gitlab.key && chmod 600 gitlab.key
|
|
||||||
- npm run build
|
|
||||||
- scp -i gitlab.key -o StrictHostKeyChecking=no -r dist/* lemans@ssh-lemans.happy-dev.fr:~/front/
|
|
||||||
only:
|
|
||||||
- master
|
|
||||||
when: manual
|
when: manual
|
||||||
tags:
|
|
||||||
- deploy
|
|
||||||
|
|
||||||
apidays:
|
apidays:
|
||||||
stage: deployment
|
extends: .ansible
|
||||||
environment:
|
environment:
|
||||||
name: apidays
|
name: apidays
|
||||||
url: https://apidays.hubl.world
|
url: https://apidays.hubl.world
|
||||||
before_script:
|
|
||||||
- npm ci --cache .npm --prefer-offline --only=production
|
|
||||||
script:
|
|
||||||
- echo "$APP_CONFIG_APIDAYS" > config.json
|
|
||||||
- echo "$SSH_DEPLOY_KEY" | tr -d '\r' > gitlab.key && chmod 600 gitlab.key
|
|
||||||
- npm run build
|
|
||||||
- scp -i gitlab.key -o StrictHostKeyChecking=no -r dist/* apidays@astral.startinblox.com:~/front/
|
|
||||||
only:
|
|
||||||
- master
|
|
||||||
when: manual
|
when: manual
|
||||||
tags:
|
|
||||||
- deploy
|
|
||||||
|
|
||||||
toulouse:
|
toulouse:
|
||||||
stage: deployment
|
extends: .ansible
|
||||||
environment:
|
environment:
|
||||||
name: toulouse
|
name: toulouse
|
||||||
url: https://app.toulouse.happy-dev.fr
|
url: https://app.toulouse.happy-dev.fr
|
||||||
before_script:
|
|
||||||
- npm ci --cache .npm --prefer-offline --only=production
|
|
||||||
script:
|
|
||||||
- echo "$APP_CONFIG_TOULOUSE" > config.json
|
|
||||||
- echo "$SSH_DEPLOY_KEY" | tr -d '\r' > gitlab.key && chmod 600 gitlab.key
|
|
||||||
- npm run build
|
|
||||||
- scp -i gitlab.key -o StrictHostKeyChecking=no -r dist/* toulouse@ssh-toulouse.happy-dev.fr:~/front/
|
|
||||||
only:
|
|
||||||
- master
|
|
||||||
when: manual
|
when: manual
|
||||||
tags:
|
|
||||||
- deploy
|
|
||||||
|
|
||||||
lepool:
|
lepool:
|
||||||
stage: deployment
|
extends: .ansible
|
||||||
environment:
|
environment:
|
||||||
name: lepool
|
name: lepool
|
||||||
url: https://lepool.hubl.world
|
url: https://lepool.hubl.world
|
||||||
before_script:
|
|
||||||
- npm ci --cache .npm --prefer-offline --only=production
|
|
||||||
script:
|
|
||||||
- echo "$APP_CONFIG_LEPOOL" > config.json
|
|
||||||
- echo "$SSH_DEPLOY_KEY" | tr -d '\r' > gitlab.key && chmod 600 gitlab.key
|
|
||||||
- npm run build
|
|
||||||
- scp -i gitlab.key -o StrictHostKeyChecking=no -r dist/* lepool@astral.startinblox.com:~/front/
|
|
||||||
only:
|
|
||||||
- master
|
|
||||||
when: manual
|
when: manual
|
||||||
tags:
|
|
||||||
- deploy
|
|
||||||
|
|
||||||
cpe:
|
cpe:
|
||||||
stage: deployment
|
extends: .ansible
|
||||||
environment:
|
environment:
|
||||||
name: cpe
|
name: cpe
|
||||||
url: https://cpe.hubl.world
|
url: https://cpe.hubl.world
|
||||||
before_script:
|
|
||||||
- npm ci --cache .npm --prefer-offline --only=production
|
|
||||||
script:
|
|
||||||
- echo "$APP_CONFIG_CPE" > config.json
|
|
||||||
- echo "$SSH_DEPLOY_KEY" | tr -d '\r' > gitlab.key && chmod 600 gitlab.key
|
|
||||||
- npm run build
|
|
||||||
- scp -i gitlab.key -o StrictHostKeyChecking=no -r dist/* cpe@astral.startinblox.com:~/front/
|
|
||||||
only:
|
|
||||||
- master
|
|
||||||
when: manual
|
when: manual
|
||||||
tags:
|
|
||||||
- deploy
|
|
||||||
|
|
||||||
lescanumeriques:
|
lescanumeriques:
|
||||||
stage: deployment
|
extends: .ansible
|
||||||
environment:
|
environment:
|
||||||
name: lescanumeriques
|
name: lescanumeriques
|
||||||
url: https://fichemetier.fr.hubl.world
|
url: https://fichemetier.fr.hubl.world
|
||||||
before_script:
|
|
||||||
- npm ci --cache .npm --prefer-offline --only=production
|
|
||||||
script:
|
|
||||||
- echo "$APP_CONFIG_LESCANUMERIQUES" > config.json
|
|
||||||
- echo "$SSH_DEPLOY_KEY" | tr -d '\r' > gitlab.key && chmod 600 gitlab.key
|
|
||||||
- npm run build
|
|
||||||
- scp -i gitlab.key -o StrictHostKeyChecking=no -r dist/* lescanumeriques@astral.startinblox.com:~/front/
|
|
||||||
only:
|
|
||||||
- master
|
|
||||||
when: manual
|
when: manual
|
||||||
tags:
|
|
||||||
- deploy
|
|
||||||
|
|
||||||
phares:
|
phares:
|
||||||
stage: deployment
|
extends: .ansible
|
||||||
environment:
|
environment:
|
||||||
name: phares
|
name: phares
|
||||||
url: https://le.phares.hubl.world
|
url: https://le.phares.hubl.world
|
||||||
before_script:
|
|
||||||
- npm ci --cache .npm --prefer-offline --only=production
|
|
||||||
script:
|
|
||||||
- echo "$APP_CONFIG_LE_PHARES" > config.json
|
|
||||||
- echo "$SSH_DEPLOY_KEY" | tr -d '\r' > gitlab.key && chmod 600 gitlab.key
|
|
||||||
- npm run build
|
|
||||||
- scp -i gitlab.key -o StrictHostKeyChecking=no -r dist/* phares@astral.startinblox.com:~/front/
|
|
||||||
only:
|
|
||||||
- master
|
|
||||||
when: manual
|
when: manual
|
||||||
tags:
|
|
||||||
- deploy
|
|
||||||
|
|
||||||
esspace:
|
esspace:
|
||||||
stage: deployment
|
extends: .ansible
|
||||||
environment:
|
environment:
|
||||||
name: esspace
|
name: esspace
|
||||||
url: https://ess.pace.hubl.world
|
url: https://ess.pace.hubl.world
|
||||||
before_script:
|
|
||||||
- npm ci --cache .npm --prefer-offline --only=production
|
|
||||||
script:
|
|
||||||
- echo "$APP_CONFIG_ESSPACE" > config.json
|
|
||||||
- echo "$SSH_DEPLOY_KEY" | tr -d '\r' > gitlab.key && chmod 600 gitlab.key
|
|
||||||
- npm run build
|
|
||||||
- scp -i gitlab.key -o StrictHostKeyChecking=no -r dist/* esspace@astral.startinblox.com:~/front/
|
|
||||||
only:
|
|
||||||
- master
|
|
||||||
when: manual
|
when: manual
|
||||||
tags:
|
|
||||||
- deploy
|
|
||||||
|
|
||||||
grandecoco:
|
grandecoco:
|
||||||
stage: deployment
|
extends: .ansible
|
||||||
environment:
|
environment:
|
||||||
name: grandecoco
|
name: grandecoco
|
||||||
url: https://la.grande.coco.hubl.world
|
url: https://la.grande.coco.hubl.world
|
||||||
before_script:
|
|
||||||
- npm ci --cache .npm --prefer-offline --only=production
|
|
||||||
script:
|
|
||||||
- echo "$APP_CONFIG_COCO" > config.json
|
|
||||||
- echo "$SSH_DEPLOY_KEY" | tr -d '\r' > gitlab.key && chmod 600 gitlab.key
|
|
||||||
- npm run build
|
|
||||||
- scp -i gitlab.key -o StrictHostKeyChecking=no -r dist/* grande-coco@astral.startinblox.com:~/front/
|
|
||||||
only:
|
|
||||||
- master
|
|
||||||
when: manual
|
when: manual
|
||||||
tags:
|
|
||||||
- deploy
|
|
||||||
|
|
||||||
espaceimaginaire:
|
espaceimaginaire:
|
||||||
stage: deployment
|
extends: .ansible
|
||||||
environment:
|
environment:
|
||||||
name: espaceimaginaire
|
name: espaceimaginaire
|
||||||
url: https://espace-imaginaire.hubl.world
|
url: https://espace-imaginaire.hubl.world
|
||||||
before_script:
|
|
||||||
- npm ci --cache .npm --prefer-offline --only=production
|
|
||||||
script:
|
|
||||||
- echo "$APP_CONFIG_ESPACEIMAGINAIRE" > config.json
|
|
||||||
- echo "$SSH_DEPLOY_KEY" | tr -d '\r' > gitlab.key && chmod 600 gitlab.key
|
|
||||||
- npm run build
|
|
||||||
- scp -i gitlab.key -o StrictHostKeyChecking=no -r dist/* espace-imaginaire@astral.startinblox.com:~/front/
|
|
||||||
only:
|
|
||||||
- master
|
|
||||||
when: manual
|
when: manual
|
||||||
tags:
|
|
||||||
- deploy
|
|
||||||
|
|
||||||
hallesciviques:
|
hallesciviques:
|
||||||
stage: deployment
|
extends: .ansible
|
||||||
environment:
|
environment:
|
||||||
name: hallesciviques
|
name: hallesciviques
|
||||||
url: https://les.halles.civiques.hubl.world
|
url: https://les.halles.civiques.hubl.world
|
||||||
before_script:
|
|
||||||
- npm ci --cache .npm --prefer-offline --only=production
|
|
||||||
script:
|
|
||||||
- echo "$APP_CONFIG_HALLES" > config.json
|
|
||||||
- echo "$SSH_DEPLOY_KEY" | tr -d '\r' > gitlab.key && chmod 600 gitlab.key
|
|
||||||
- npm run build
|
|
||||||
- scp -i gitlab.key -o StrictHostKeyChecking=no -r dist/* halles-civiques@astral.startinblox.com:~/front/
|
|
||||||
only:
|
|
||||||
- master
|
|
||||||
when: manual
|
when: manual
|
||||||
tags:
|
|
||||||
- deploy
|
|
||||||
|
|
||||||
ctc:
|
ctc:
|
||||||
stage: deployment
|
extends: .ansible
|
||||||
environment:
|
environment:
|
||||||
name: ctc
|
name: ctc
|
||||||
url: https://collectif.tansition.citoyenne.hubl.world
|
url: https://collectif.tansition.citoyenne.hubl.world
|
||||||
before_script:
|
|
||||||
- npm ci --cache .npm --prefer-offline --only=production
|
|
||||||
script:
|
|
||||||
- echo "$APP_CONFIG_CTC" > config.json
|
|
||||||
- echo "$SSH_DEPLOY_KEY" | tr -d '\r' > gitlab.key && chmod 600 gitlab.key
|
|
||||||
- npm run build
|
|
||||||
- scp -i gitlab.key -o StrictHostKeyChecking=no -r dist/* collectif-tansition-citoyenne@astral.startinblox.com:~/front/
|
|
||||||
only:
|
|
||||||
- master
|
|
||||||
when: manual
|
when: manual
|
||||||
tags:
|
|
||||||
- deploy
|
|
||||||
|
|
||||||
studiossinguliers:
|
studiossinguliers:
|
||||||
stage: deployment
|
extends: .ansible
|
||||||
environment:
|
environment:
|
||||||
name: studiossinguliers
|
name: studiossinguliers
|
||||||
url: https://studios-singuliers.hubl.world
|
url: https://studios-singuliers.hubl.world
|
||||||
before_script:
|
|
||||||
- npm ci --cache .npm --prefer-offline --only=production
|
|
||||||
script:
|
|
||||||
- echo "$APP_CONFIG_SINGULIER" > config.json
|
|
||||||
- echo "$SSH_DEPLOY_KEY" | tr -d '\r' > gitlab.key && chmod 600 gitlab.key
|
|
||||||
- npm run build
|
|
||||||
- scp -i gitlab.key -o StrictHostKeyChecking=no -r dist/* studios-singuliers@astral.startinblox.com:~/front/
|
|
||||||
only:
|
|
||||||
- master
|
|
||||||
when: manual
|
when: manual
|
||||||
tags:
|
|
||||||
- deploy
|
|
||||||
|
|
||||||
apluscestmieux:
|
apluscestmieux:
|
||||||
stage: deployment
|
extends: .ansible
|
||||||
environment:
|
environment:
|
||||||
name: apluscestmieux
|
name: apluscestmieux
|
||||||
url: https://apluscestmieux.hubl.world
|
url: https://apluscestmieux.hubl.world
|
||||||
before_script:
|
|
||||||
- npm ci --cache .npm --prefer-offline --only=production
|
|
||||||
script:
|
|
||||||
- echo "$APP_CONFIG_APLUS" > config.json
|
|
||||||
- echo "$SSH_DEPLOY_KEY" | tr -d '\r' > gitlab.key && chmod 600 gitlab.key
|
|
||||||
- npm run build
|
|
||||||
- scp -i gitlab.key -o StrictHostKeyChecking=no -r dist/* apluscestmieux@astral.startinblox.com:~/front/
|
|
||||||
only:
|
|
||||||
- master
|
|
||||||
when: manual
|
when: manual
|
||||||
tags:
|
|
||||||
- deploy
|
|
||||||
|
|
||||||
projetlerepaire:
|
projetlerepaire:
|
||||||
stage: deployment
|
extends: .ansible
|
||||||
environment:
|
environment:
|
||||||
name: projetlerepaire
|
name: projetlerepaire
|
||||||
url: https://projet.le.repaire.hubl.world
|
url: https://projet.le.repaire.hubl.world
|
||||||
before_script:
|
|
||||||
- npm ci --cache .npm --prefer-offline --only=production
|
|
||||||
script:
|
|
||||||
- echo "$APP_CONFIG_LEREPAIRE" > config.json
|
|
||||||
- echo "$SSH_DEPLOY_KEY" | tr -d '\r' > gitlab.key && chmod 600 gitlab.key
|
|
||||||
- npm run build
|
|
||||||
- scp -i gitlab.key -o StrictHostKeyChecking=no -r dist/* projetlerepaire@astral.startinblox.com:~/front/
|
|
||||||
only:
|
|
||||||
- master
|
|
||||||
when: manual
|
when: manual
|
||||||
tags:
|
|
||||||
- deploy
|
|
||||||
|
|
||||||
oxamyne:
|
oxamyne:
|
||||||
stage: deployment
|
extends: .ansible
|
||||||
environment:
|
environment:
|
||||||
name: oxamyne
|
name: oxamyne
|
||||||
url: https://oxamyne.hubl.world
|
url: https://oxamyne.hubl.world
|
||||||
before_script:
|
|
||||||
- npm ci --cache .npm --prefer-offline --only=production
|
|
||||||
script:
|
|
||||||
- echo "$APP_CONFIG_OXAMYNE" > config.json
|
|
||||||
- echo "$SSH_DEPLOY_KEY" | tr -d '\r' > gitlab.key && chmod 600 gitlab.key
|
|
||||||
- npm run build
|
|
||||||
- scp -i gitlab.key -o StrictHostKeyChecking=no -r dist/* oxamyne@astral.startinblox.com:~/front/
|
|
||||||
only:
|
|
||||||
- master
|
|
||||||
when: manual
|
when: manual
|
||||||
tags:
|
|
||||||
- deploy
|
|
||||||
|
|
||||||
laruchesaintgermain:
|
laruchesaintgermain:
|
||||||
stage: deployment
|
extends: .ansible
|
||||||
environment:
|
environment:
|
||||||
name: laruchesaintgermain
|
name: laruchesaintgermain
|
||||||
url: https://la.ruche.saint-germain.hubl.world
|
url: https://la.ruche.saint-germain.hubl.world
|
||||||
before_script:
|
|
||||||
- npm ci --cache .npm --prefer-offline --only=production
|
|
||||||
script:
|
|
||||||
- echo "$APP_CONFIG_LARUCHE" > config.json
|
|
||||||
- echo "$SSH_DEPLOY_KEY" | tr -d '\r' > gitlab.key && chmod 600 gitlab.key
|
|
||||||
- npm run build
|
|
||||||
- scp -i gitlab.key -o StrictHostKeyChecking=no -r dist/* laruche-saint-germain@astral.startinblox.com:~/front/
|
|
||||||
only:
|
|
||||||
- master
|
|
||||||
when: manual
|
when: manual
|
||||||
tags:
|
|
||||||
- deploy
|
|
||||||
|
|
||||||
artefacts:
|
artefacts:
|
||||||
stage: deployment
|
extends: .ansible
|
||||||
environment:
|
environment:
|
||||||
name: artefacts
|
name: artefacts
|
||||||
url: https://artefacts.hubl.world
|
url: https://artefacts.hubl.world
|
||||||
before_script:
|
|
||||||
- npm ci --cache .npm --prefer-offline --only=production
|
|
||||||
script:
|
|
||||||
- echo "$APP_CONFIG_ARTEFACTS" > config.json
|
|
||||||
- echo "$SSH_DEPLOY_KEY" | tr -d '\r' > gitlab.key && chmod 600 gitlab.key
|
|
||||||
- npm run build
|
|
||||||
- scp -i gitlab.key -o StrictHostKeyChecking=no -r dist/* artefacts@astral.startinblox.com:~/front/
|
|
||||||
only:
|
|
||||||
- master
|
|
||||||
when: manual
|
when: manual
|
||||||
tags:
|
|
||||||
- deploy
|
|
||||||
|
|
||||||
lab01:
|
lab01:
|
||||||
stage: deployment
|
extends: .ansible
|
||||||
environment:
|
environment:
|
||||||
name: lab01
|
name: lab01
|
||||||
url: https://le.lab01.hubl.world
|
url: https://le.lab01.hubl.world
|
||||||
before_script:
|
|
||||||
- npm ci --cache .npm --prefer-offline --only=production
|
|
||||||
script:
|
|
||||||
- echo "$APP_CONFIG_LAB01" > config.json
|
|
||||||
- echo "$SSH_DEPLOY_KEY" | tr -d '\r' > gitlab.key && chmod 600 gitlab.key
|
|
||||||
- npm run build
|
|
||||||
- scp -i gitlab.key -o StrictHostKeyChecking=no -r dist/* le-lab01@astral.startinblox.com:~/front/
|
|
||||||
only:
|
|
||||||
- master
|
|
||||||
when: manual
|
when: manual
|
||||||
tags:
|
|
||||||
- deploy
|
|
||||||
|
|
||||||
makesense:
|
makesense:
|
||||||
stage: deployment
|
extends: .ansible
|
||||||
environment:
|
environment:
|
||||||
name: makesense
|
name: makesense
|
||||||
url: https://makesense.hubl.world
|
url: https://makesense.hubl.world
|
||||||
before_script:
|
|
||||||
- npm ci --cache .npm --prefer-offline --only=production
|
|
||||||
script:
|
|
||||||
- echo "$APP_CONFIG_MAKESENSE" > config.json
|
|
||||||
- echo "$SSH_DEPLOY_KEY" | tr -d '\r' > gitlab.key && chmod 600 gitlab.key
|
|
||||||
- npm run build
|
|
||||||
- scp -i gitlab.key -o StrictHostKeyChecking=no -r dist/* makesense@astral.startinblox.com:~/front/
|
|
||||||
only:
|
|
||||||
- master
|
|
||||||
when: manual
|
when: manual
|
||||||
tags:
|
|
||||||
- deploy
|
|
||||||
|
|
||||||
moulindepontru:
|
moulindepontru:
|
||||||
stage: deployment
|
extends: .ansible
|
||||||
environment:
|
environment:
|
||||||
name: moulindepontru
|
name: moulindepontru
|
||||||
url: https://moulin.de.pont-ru.hubl.world
|
url: https://moulin.de.pont-ru.hubl.world
|
||||||
before_script:
|
|
||||||
- npm ci --cache .npm --prefer-offline --only=production
|
|
||||||
script:
|
|
||||||
- echo "$APP_CONFIG_MOULINPONTRU" > config.json
|
|
||||||
- echo "$SSH_DEPLOY_KEY" | tr -d '\r' > gitlab.key && chmod 600 gitlab.key
|
|
||||||
- npm run build
|
|
||||||
- scp -i gitlab.key -o StrictHostKeyChecking=no -r dist/* moulin-de-pont-ru@astral.startinblox.com:~/front/
|
|
||||||
only:
|
|
||||||
- master
|
|
||||||
when: manual
|
when: manual
|
||||||
tags:
|
|
||||||
- deploy
|
|
||||||
|
|
||||||
latreso:
|
latreso:
|
||||||
stage: deployment
|
extends: .ansible
|
||||||
environment:
|
environment:
|
||||||
name: latreso
|
name: latreso
|
||||||
url: https://la.treso.hubl.world
|
url: https://la.treso.hubl.world
|
||||||
before_script:
|
|
||||||
- npm ci --cache .npm --prefer-offline --only=production
|
|
||||||
script:
|
|
||||||
- echo "$APP_CONFIG_LATRESO" > config.json
|
|
||||||
- echo "$SSH_DEPLOY_KEY" | tr -d '\r' > gitlab.key && chmod 600 gitlab.key
|
|
||||||
- npm run build
|
|
||||||
- scp -i gitlab.key -o StrictHostKeyChecking=no -r dist/* la-treso@astral.startinblox.com:~/front/
|
|
||||||
only:
|
|
||||||
- master
|
|
||||||
when: manual
|
when: manual
|
||||||
tags:
|
|
||||||
- deploy
|
|
||||||
|
|
||||||
montpellier:
|
montpellier:
|
||||||
stage: deployment
|
extends: .ansible
|
||||||
environment:
|
environment:
|
||||||
name: montpellier
|
name: montpellier
|
||||||
url: https://app.montpellier.happy-dev.fr
|
url: https://app.montpellier.happy-dev.fr
|
||||||
before_script:
|
|
||||||
- npm ci --cache .npm --prefer-offline --only=production
|
|
||||||
script:
|
|
||||||
- echo "$APP_CONFIG_MONTPELLIER" > config.json
|
|
||||||
- echo "$SSH_DEPLOY_KEY" | tr -d '\r' > gitlab.key && chmod 600 gitlab.key
|
|
||||||
- npm run build
|
|
||||||
- scp -i gitlab.key -o StrictHostKeyChecking=no -r dist/* montpellier@ssh-montpellier.happy-dev.fr:~/front/
|
|
||||||
only:
|
|
||||||
- master
|
|
||||||
when: manual
|
when: manual
|
||||||
tags:
|
|
||||||
- deploy
|
|
||||||
|
|
||||||
acn:
|
acn:
|
||||||
stage: deployment
|
extends: .ansible
|
||||||
environment:
|
environment:
|
||||||
name: acn
|
name: acn
|
||||||
url: https://acn.hubl.world
|
url: https://acn.hubl.world
|
||||||
before_script:
|
|
||||||
- npm ci --cache .npm --prefer-offline --only=production
|
|
||||||
script:
|
|
||||||
- echo "$APP_CONFIG_ACN" > config.json
|
|
||||||
- echo "$SSH_DEPLOY_KEY" | tr -d '\r' > gitlab.key && chmod 600 gitlab.key
|
|
||||||
- npm run build
|
|
||||||
- scp -i gitlab.key -o StrictHostKeyChecking=no -r dist/* acn@astral.startinblox.com:~/client/dist/
|
|
||||||
only:
|
|
||||||
- master
|
|
||||||
when: manual
|
when: manual
|
||||||
tags:
|
|
||||||
- deploy
|
|
||||||
|
|
||||||
woma:
|
woma:
|
||||||
stage: deployment
|
extends: .ansible
|
||||||
environment:
|
environment:
|
||||||
name: woma
|
name: woma
|
||||||
url: https://woma.hubl.world
|
url: https://woma.hubl.world
|
||||||
before_script:
|
|
||||||
- npm ci --cache .npm --prefer-offline --only=production
|
|
||||||
script:
|
|
||||||
- echo "$APP_CONFIG_WOMA" > config.json
|
|
||||||
- echo "$SSH_DEPLOY_KEY" | tr -d '\r' > gitlab.key && chmod 600 gitlab.key
|
|
||||||
- npm run build
|
|
||||||
- scp -i gitlab.key -o StrictHostKeyChecking=no -r dist/* woma@astral.startinblox.com:~/client/dist/
|
|
||||||
only:
|
|
||||||
- master
|
|
||||||
when: manual
|
when: manual
|
||||||
tags:
|
|
||||||
- deploy
|
|
||||||
|
Loading…
Reference in New Issue
Block a user