Skip to content

Commit

Permalink
Release tag.
Browse files Browse the repository at this point in the history
  • Loading branch information
dleclercpro committed Jan 26, 2024
1 parent a9f18b7 commit 47f41e1
Show file tree
Hide file tree
Showing 15 changed files with 25 additions and 25 deletions.
2 changes: 1 addition & 1 deletion Apps/Broker/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "event-driven-architecture-playground--broker",
"version": "latest",
"version": "1.5.0",
"author": "David Leclerc",
"main": "./src/index.ts",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion Apps/Common/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "event-driven-architecture-playground--common",
"version": "latest",
"version": "1.5.0",
"author": "David Leclerc",
"main": "./src/index.ts",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion Apps/Delivery/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "event-driven-architecture-playground--delivery",
"version": "latest",
"version": "1.5.0",
"author": "David Leclerc",
"main": "./src/index.ts",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion Apps/Order/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "event-driven-architecture-playground--order",
"version": "latest",
"version": "1.5.0",
"author": "David Leclerc",
"main": "./src/index.ts",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion Apps/Payment/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "event-driven-architecture-playground--payment",
"version": "latest",
"version": "1.5.0",
"author": "David Leclerc",
"main": "./src/index.ts",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion K8s/Resources/Deployments/Broker.deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ spec:
spec:
containers:
- name: app
image: dleclercpro/eda-playground-broker:latest
image: dleclercpro/eda-playground-broker:1.5.0
imagePullPolicy: IfNotPresent # To avoid pulling image from repo
ports:
- containerPort: 80
Expand Down
2 changes: 1 addition & 1 deletion K8s/Resources/Deployments/Delivery.deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ spec:
spec:
containers:
- name: app
image: dleclercpro/eda-playground-delivery:latest
image: dleclercpro/eda-playground-delivery:1.5.0
imagePullPolicy: IfNotPresent # To avoid pulling image from repo
ports:
- containerPort: 80
Expand Down
2 changes: 1 addition & 1 deletion K8s/Resources/Deployments/Grafana.deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ spec:
spec:
containers:
- name: app
image: dleclercpro/eda-playground-grafana:latest
image: dleclercpro/eda-playground-grafana:1.5.0
ports:
- containerPort: 3000
volumeMounts:
Expand Down
2 changes: 1 addition & 1 deletion K8s/Resources/Deployments/Order.deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ spec:
spec:
containers:
- name: app
image: dleclercpro/eda-playground-order:latest
image: dleclercpro/eda-playground-order:1.5.0
imagePullPolicy: IfNotPresent # To avoid pulling image from repo
ports:
- containerPort: 80
Expand Down
2 changes: 1 addition & 1 deletion K8s/Resources/Deployments/Payment.deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ spec:
spec:
containers:
- name: app
image: dleclercpro/eda-playground-payment:latest
image: dleclercpro/eda-playground-payment:1.5.0
imagePullPolicy: IfNotPresent # To avoid pulling image from repo
ports:
- containerPort: 80
Expand Down
2 changes: 1 addition & 1 deletion K8s/Resources/Deployments/Prometheus.deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@ spec:
spec:
containers:
- name: app
image: dleclercpro/eda-playground-prometheus:latest
image: dleclercpro/eda-playground-prometheus:1.5.0
ports:
- containerPort: 9090
2 changes: 1 addition & 1 deletion K8s/Scripts/load.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Define constant image details
user="dleclercpro"
app="eda-playground"
release="latest"
release="1.5.0"

# Upload local images to Minikube image registry
minikube image load $user/$app-broker:$release
Expand Down
2 changes: 1 addition & 1 deletion Scripts/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ cd "$dir/../Apps"
# Define constant image details
user="dleclercpro"
app="eda-playground"
release="latest"
release="1.5.0"

# Build app images
docker buildx build --platform linux/amd64,linux/arm64 -t $user/$app-broker:$release -f Broker.Dockerfile . --push
Expand Down
12 changes: 6 additions & 6 deletions docker-compose.local.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version: '3.8'
services:
eda-playground-broker:
container_name: eda-playground-broker
image: dleclercpro/eda-playground-broker:latest
image: dleclercpro/eda-playground-broker:1.5.0
build:
context: ./Apps
dockerfile: Broker.Dockerfile
Expand All @@ -15,7 +15,7 @@ services:

eda-playground-order:
container_name: eda-playground-order
image: dleclercpro/eda-playground-order:latest
image: dleclercpro/eda-playground-order:1.5.0
build:
context: ./Apps
dockerfile: Order.Dockerfile
Expand All @@ -26,7 +26,7 @@ services:

eda-playground-payment:
container_name: eda-playground-payment
image: dleclercpro/eda-playground-payment:latest
image: dleclercpro/eda-playground-payment:1.5.0
build:
context: ./Apps
dockerfile: Payment.Dockerfile
Expand All @@ -37,7 +37,7 @@ services:

eda-playground-delivery:
container_name: eda-playground-delivery
image: dleclercpro/eda-playground-delivery:latest
image: dleclercpro/eda-playground-delivery:1.5.0
build:
context: ./Apps
dockerfile: Delivery.Dockerfile
Expand All @@ -48,7 +48,7 @@ services:

eda-playground-prometheus:
container_name: eda-playground-prometheus
image: dleclercpro/eda-playground-prometheus:latest
image: dleclercpro/eda-playground-prometheus:1.5.0
build:
context: ./Apps
dockerfile: Prometheus.Dockerfile
Expand All @@ -60,7 +60,7 @@ services:

eda-playground-grafana:
container_name: eda-playground-grafana
image: dleclercpro/eda-playground-grafana:latest
image: dleclercpro/eda-playground-grafana:1.5.0
build:
context: ./Apps
dockerfile: Grafana.Dockerfile
Expand Down
12 changes: 6 additions & 6 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ services:

eda-playground-broker:
container_name: eda-playground-broker
image: dleclercpro/eda-playground-broker:latest
image: dleclercpro/eda-playground-broker:1.5.0
build:
context: ./Apps
dockerfile: Broker.Dockerfile
Expand All @@ -31,7 +31,7 @@ services:

eda-playground-order:
container_name: eda-playground-order
image: dleclercpro/eda-playground-order:latest
image: dleclercpro/eda-playground-order:1.5.0
build:
context: ./Apps
dockerfile: Order.Dockerfile
Expand All @@ -44,7 +44,7 @@ services:

eda-playground-payment:
container_name: eda-playground-payment
image: dleclercpro/eda-playground-payment:latest
image: dleclercpro/eda-playground-payment:1.5.0
build:
context: ./Apps
dockerfile: Payment.Dockerfile
Expand All @@ -57,7 +57,7 @@ services:

eda-playground-delivery:
container_name: eda-playground-delivery
image: dleclercpro/eda-playground-delivery:latest
image: dleclercpro/eda-playground-delivery:1.5.0
build:
context: ./Apps
dockerfile: Delivery.Dockerfile
Expand All @@ -70,7 +70,7 @@ services:

eda-playground-prometheus:
container_name: eda-playground-prometheus
image: dleclercpro/eda-playground-prometheus:latest
image: dleclercpro/eda-playground-prometheus:1.5.0
build:
context: ./Apps
dockerfile: Prometheus.Dockerfile
Expand All @@ -82,7 +82,7 @@ services:

eda-playground-grafana:
container_name: eda-playground-grafana
image: dleclercpro/eda-playground-grafana:latest
image: dleclercpro/eda-playground-grafana:1.5.0
build:
context: ./Apps
dockerfile: Grafana.Dockerfile
Expand Down

0 comments on commit 47f41e1

Please sign in to comment.