From fd614dcb2c63d63690578cd46ec700faedce3a7a Mon Sep 17 00:00:00 2001 From: Thomas Gruson Date: Wed, 30 Sep 2020 17:36:58 +0200 Subject: [PATCH] =?UTF-8?q?=E2=AC=86=EF=B8=8F=20=20Upgrade=20to=207.0.3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/build-back.yaml | 2 +- .github/workflows/build-front.yaml | 2 +- charts/stable/Chart.yaml | 2 +- charts/stable/templates/deploy-api.yaml | 2 +- charts/stable/templates/deploy-ui.yaml | 2 +- code/Makefile | 2 +- code/api/database/pom.xml | 2 +- code/api/generated-cucumber-report/pom.xml | 2 +- code/api/lib/pom.xml | 2 +- code/api/pom.xml | 2 +- code/api/server/pom.xml | 2 +- code/docker-compose.yaml | 4 ++-- 12 files changed, 13 insertions(+), 13 deletions(-) diff --git a/.github/workflows/build-back.yaml b/.github/workflows/build-back.yaml index 1deabe69f..58441d00e 100644 --- a/.github/workflows/build-back.yaml +++ b/.github/workflows/build-back.yaml @@ -21,7 +21,7 @@ jobs: name: Prepare id: prep run: | - DOCKER_IMAGE=aligor/ara-api + DOCKER_IMAGE=Decathlon/ara-api VERSION=noop if [ "${{ github.event_name }}" = "schedule" ]; then VERSION=nightly diff --git a/.github/workflows/build-front.yaml b/.github/workflows/build-front.yaml index a3932ec15..805ca741b 100644 --- a/.github/workflows/build-front.yaml +++ b/.github/workflows/build-front.yaml @@ -21,7 +21,7 @@ jobs: name: Prepare id: prep run: | - DOCKER_IMAGE=aligor/ara-web-ui + DOCKER_IMAGE=Decathlon/ara-web-ui VERSION=noop if [ "${{ github.event_name }}" = "schedule" ]; then VERSION=nightly diff --git a/charts/stable/Chart.yaml b/charts/stable/Chart.yaml index 666632226..1790e094c 100644 --- a/charts/stable/Chart.yaml +++ b/charts/stable/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v2 name: ara -version: 7.0.2 +version: 7.0.3 home: https://github.com/Decathlon/ara description: | ARA helps you to fight against regressions by letting it preanalyze your non-regression tests runs, diff --git a/charts/stable/templates/deploy-api.yaml b/charts/stable/templates/deploy-api.yaml index 9815818ac..1324224a3 100644 --- a/charts/stable/templates/deploy-api.yaml +++ b/charts/stable/templates/deploy-api.yaml @@ -26,7 +26,7 @@ spec: spec: containers: - name: {{ $name }} - image: "{{ .Values.image.registry }}/ara-api:{{ .Chart.Version }}" + image: "{{ .Values.image.registry }}/Decathlon/ara-api:{{ .Chart.Version }}" imagePullPolicy: {{ .Values.image.pullPolicy }} env: - name: SERVER_PORT diff --git a/charts/stable/templates/deploy-ui.yaml b/charts/stable/templates/deploy-ui.yaml index e97196c78..4d1e4f4ca 100644 --- a/charts/stable/templates/deploy-ui.yaml +++ b/charts/stable/templates/deploy-ui.yaml @@ -26,7 +26,7 @@ spec: spec: containers: - name: {{ $name }} - image: "{{ .Values.image.registry }}/ara-web-ui:{{ .Chart.Version }}" + image: "{{ .Values.image.registry }}/Decathlon/ara-web-ui:{{ .Chart.Version }}" imagePullPolicy: {{ .Values.image.pullPolicy }} env: - name: API_URL diff --git a/code/Makefile b/code/Makefile index c5bbef07e..cf79650de 100644 --- a/code/Makefile +++ b/code/Makefile @@ -1,7 +1,7 @@ JAVA_VERSION=14 DOCKER_REGISTRY?=docker.io # Forks may use name/ara for their tests -IMAGE_NAME?=ara +IMAGE_NAME?=Decathlon/ara VERSION?=latest API_IMAGE=${DOCKER_REGISTRY}/${IMAGE_NAME}-api:${VERSION} diff --git a/code/api/database/pom.xml b/code/api/database/pom.xml index c8008d701..47ba1b52b 100644 --- a/code/api/database/pom.xml +++ b/code/api/database/pom.xml @@ -28,7 +28,7 @@ com.decathlon.ara ara-database - 7.0.2 + 7.0.3 ARA Database diff --git a/code/api/generated-cucumber-report/pom.xml b/code/api/generated-cucumber-report/pom.xml index a4f65c1ac..1f5440e6f 100644 --- a/code/api/generated-cucumber-report/pom.xml +++ b/code/api/generated-cucumber-report/pom.xml @@ -27,7 +27,7 @@ com.decathlon.ara ara-generated-cucumber-report - 7.0.2 + 7.0.3 ARA Cucumber diff --git a/code/api/lib/pom.xml b/code/api/lib/pom.xml index 6b12770f8..aea1e6d7c 100644 --- a/code/api/lib/pom.xml +++ b/code/api/lib/pom.xml @@ -27,7 +27,7 @@ com.decathlon.ara ara-lib - 7.0.2 + 7.0.3 14 diff --git a/code/api/pom.xml b/code/api/pom.xml index 7a22e6eac..ce7895bcb 100644 --- a/code/api/pom.xml +++ b/code/api/pom.xml @@ -28,7 +28,7 @@ com.decathlon.ara ara-parent pom - 7.0.2 + 7.0.3 ARA Parent diff --git a/code/api/server/pom.xml b/code/api/server/pom.xml index 1fd49ff5a..c2475cfd7 100644 --- a/code/api/server/pom.xml +++ b/code/api/server/pom.xml @@ -28,7 +28,7 @@ com.decathlon.ara ara-server - 7.0.2 + 7.0.3 ARA Server diff --git a/code/docker-compose.yaml b/code/docker-compose.yaml index ff2531baa..1d3290854 100644 --- a/code/docker-compose.yaml +++ b/code/docker-compose.yaml @@ -18,7 +18,7 @@ services: - db_net ara-api: build: ./api - image: "ara-api:${VERSION:-latest}" + image: "Decathlon/ara-api:${VERSION:-latest}" restart: always environment: - DATABASE_TYPE=mysql @@ -34,7 +34,7 @@ services: - db_net ara-web-ui: build: ./web-ui - image: "ara-web-ui:${VERSION:-latest}" + image: "Decathlon/ara-web-ui:${VERSION:-latest}" restart: always environment: - API_URL=ara-api:8080