Commit 29b27ab7 authored by Pedro Eduardo Trujillo's avatar Pedro Eduardo Trujillo
Browse files

Renombra y limpia ficheros compose, actualiza CI

parent e174f222
Loading
Loading
Loading
Loading
+1 −4
Original line number Diff line number Diff line
include:
  - project: 'redmic-project/gitlab-ci-templates'
    ref: master
    file: '/deployment.yml'
    file: '/deployment-service/docker-deploy.yml'

stages:
  - deploy
@@ -9,6 +9,3 @@ stages:
.deploy:
  variables:
    STACK: confluent
    DD_TRAEFIK_SUBDOMAIN: kafkamanager
  environment:
    url: https://${DD_TRAEFIK_SUBDOMAIN}.${PUBLIC_HOSTNAME}
+3 −1
Original line number Diff line number Diff line
@@ -5,7 +5,9 @@ KAFKA_MANAGER_AUTH_ENABLED=true
KAFKA_MANAGER_USERNAME=redmic
KAFKA_MANAGER_PASSWORD=changeme

VOL_DRIVER=local
VOL_TYPE=nfs4
VOL_ADDR=127.0.0.1
VOL_OPTIONS=rw,nolock,noatime,tcp,rsize=8192,wsize=8192,timeo=14
VOL_OPTS=rw,nolock,noatime,tcp,rsize=8192,wsize=8192,timeo=14

CONF_VOL_NAME=cmak-conf-vol
+8 −0
Original line number Diff line number Diff line
version: '3.5'

volumes:
  conf-vol:
    name: ${CONF_VOL_NAME}
    driver: local
    driver: ${VOL_DRIVER}
    driver_opts:
      type: ${VOL_TYPE}
      o: addr=${VOL_ADDR},${VOL_OPTIONS}
      device: :/cmak-conf-vol/
      o: addr=${VOL_ADDR},${VOL_OPTS}
      device: ${CONF_VOL_DEVICE:-:/cmak-conf-vol/}
+0 −2
Original line number Diff line number Diff line
version: '3.5'

services:
  cmak:
    deploy:
+0 −2
Original line number Diff line number Diff line
version: '3.5'

services:
  cmak:
    image: ${IMAGE_NAME:-hlebalbau/kafka-manager}:${IMAGE_TAG:-stable}
Loading