Commit 137086fc authored by Pablo Armingol's avatar Pablo Armingol
Browse files

feat: Adjust GitLab CI build and test timeouts and update Dockerfile base image source.

parent a7dc11df
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -133,7 +133,7 @@ kubectl create secret generic crdb-data --namespace ${TFS_K8S_NAMESPACE} --type=
printf "\n"

echo ">>> Create Secret with Apache Kafka..."
KFK_SERVER_PORT=$(kubectl --namespace ${KFK_NAMESPACE} get service kafka-public -o 'jsonpath={.spec.ports[0].port}')
KFK_SERVER_PORT=$(kubectl --namespace ${KFK_NAMESPACE} get service kafka-service -o 'jsonpath={.spec.ports[0].port}')
kubectl create secret generic kfk-kpi-data --namespace ${TFS_K8S_NAMESPACE} --type='Opaque' \
    --from-literal=KFK_NAMESPACE=${KFK_NAMESPACE} \
    --from-literal=KFK_SERVER_PORT=${KFK_SERVER_PORT}
+3 −3
Original line number Diff line number Diff line
@@ -15,7 +15,7 @@
apiVersion: v1
kind: Service
metadata:
  name: kafka-public
  name: kafka-service
  labels:
    app.kubernetes.io/component: message-broker
    app.kubernetes.io/instance: kafka
@@ -50,7 +50,7 @@ spec:
      app.kubernetes.io/component: message-broker
      app.kubernetes.io/instance: kafka
      app.kubernetes.io/name: kafka
  serviceName: "kafka-public"
  serviceName: "kafka-service"
  replicas: 1
  minReadySeconds: 5
  template:
@@ -83,7 +83,7 @@ spec:
          - name: KAFKA_CFG_LISTENER_SECURITY_PROTOCOL_MAP
            value: "PLAINTEXT:PLAINTEXT,CONTROLLER:PLAINTEXT,EXTERNAL:PLAINTEXT"
          - name: KAFKA_CFG_ADVERTISED_LISTENERS
            value: "PLAINTEXT://kafka-public.kafka.svc.cluster.local:9092,EXTERNAL://localhost:9094"
            value: "PLAINTEXT://kafka-service.kafka.svc.cluster.local:9092,EXTERNAL://localhost:9094"
          - name: KAFKA_CFG_CONTROLLER_LISTENER_NAMES
            value: "CONTROLLER"
          - name: KAFKA_CFG_CONTROLLER_QUORUM_VOTERS
+1 −1
Original line number Diff line number Diff line
@@ -18,7 +18,7 @@ build analytics:
    IMAGE_NAME: 'analytics'       # name of the microservice
    IMAGE_TAG: 'latest'             # tag of the container image (production, development, etc)
  stage: build
  timeout: 20m
  timeout: 30m
  before_script:
    - docker image prune --force
    - docker login -u "$CI_REGISTRY_USER" -p "$CI_REGISTRY_PASSWORD" $CI_REGISTRY
+1 −1
Original line number Diff line number Diff line
@@ -18,7 +18,7 @@ build automation:
    IMAGE_NAME: 'automation' # name of the microservice
    IMAGE_TAG: 'latest' # tag of the container image (production, development, etc)
  stage: build
  timeout: 20m
  timeout: 30m
  before_script:
    - docker image prune --force
    - docker login -u "$CI_REGISTRY_USER" -p "$CI_REGISTRY_PASSWORD" $CI_REGISTRY
+1 −1
Original line number Diff line number Diff line
@@ -18,7 +18,7 @@ build bgpls_speaker:
    IMAGE_NAME: 'bgpls_speaker' # name of the microservice
    IMAGE_TAG: 'latest' # tag of the container image (production, development, etc)
  stage: build
  timeout: 20m
  timeout: 30m
  before_script:
    - docker image prune --force
    - docker login -u "$CI_REGISTRY_USER" -p "$CI_REGISTRY_PASSWORD" $CI_REGISTRY
Loading