Commit 9dadee2b authored by Pedro Eduardo Trujillo's avatar Pedro Eduardo Trujillo
Browse files

Merge branch 'dev' into 'master'

Carga config y deploy desde proyecto antiguo

See merge request redmic-project/gateway/traefik!1
parents f6f060f6 c6005052
Loading
Loading
Loading
Loading

.gitignore

0 → 100644
+0 −0

Empty file added.

.gitlab-ci.yml

0 → 100644
+20 −0
Original line number Diff line number Diff line
include:
  - project: 'redmic-project/gitlab-ci-templates'
    ref: master
    file: '/deployment.yml'

stages:
  - deploy

variables:
  STACK: gateway
  IMAGE_NAME: traefik
  IMAGE_TAG: latest

.deploy:
  script:
    - >
      deploy.sh IMAGE_NAME=${IMAGE_NAME} IMAGE_TAG=${IMAGE_TAG} COMPOSE_FILE=${COMPOSE_FILE}
      PUBLIC_HOSTNAME=${PUBLIC_HOSTNAME} UI_AUTH=${UI_AUTH}
  environment:
    url: https://${CI_PROJECT_NAME}.${PUBLIC_HOSTNAME}

deploy/.env

0 → 100644
+1 −0
Original line number Diff line number Diff line
TRAEFIK_NET_NAME=traefik-net
+6 −0
Original line number Diff line number Diff line
version: '3.5'

services:
  traefik:
    command:
      - "--logLevel=INFO"
+6 −0
Original line number Diff line number Diff line
version: '3.5'

services:
  traefik:
    command:
      - "--logLevel=ERROR"
Loading