Skip to content

Commit

Permalink
⬆️ Upgrade to 7.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas Gruson committed Sep 30, 2020
1 parent d4ae2ec commit fd614dc
Show file tree
Hide file tree
Showing 12 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-back.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-front.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion charts/stable/Chart.yaml
Original file line number Diff line number Diff line change
@@ -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,
Expand Down
2 changes: 1 addition & 1 deletion charts/stable/templates/deploy-api.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion charts/stable/templates/deploy-ui.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion code/Makefile
Original file line number Diff line number Diff line change
@@ -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}
Expand Down
2 changes: 1 addition & 1 deletion code/api/database/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

<groupId>com.decathlon.ara</groupId>
<artifactId>ara-database</artifactId>
<version>7.0.2</version>
<version>7.0.3</version>

<name>ARA Database</name>
<description>
Expand Down
2 changes: 1 addition & 1 deletion code/api/generated-cucumber-report/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

<groupId>com.decathlon.ara</groupId>
<artifactId>ara-generated-cucumber-report</artifactId>
<version>7.0.2</version>
<version>7.0.3</version>

<name>ARA Cucumber</name>
<description>
Expand Down
2 changes: 1 addition & 1 deletion code/api/lib/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

<groupId>com.decathlon.ara</groupId>
<artifactId>ara-lib</artifactId>
<version>7.0.2</version>
<version>7.0.3</version>

<properties>
<java.version>14</java.version>
Expand Down
2 changes: 1 addition & 1 deletion code/api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<groupId>com.decathlon.ara</groupId>
<artifactId>ara-parent</artifactId>
<packaging>pom</packaging>
<version>7.0.2</version>
<version>7.0.3</version>

<name>ARA Parent</name>
<description>
Expand Down
2 changes: 1 addition & 1 deletion code/api/server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

<groupId>com.decathlon.ara</groupId>
<artifactId>ara-server</artifactId>
<version>7.0.2</version>
<version>7.0.3</version>

<name>ARA Server</name>
<description>
Expand Down
4 changes: 2 additions & 2 deletions code/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit fd614dc

Please sign in to comment.