Skip to content

Commit

Permalink
Release tag.
Browse files Browse the repository at this point in the history
  • Loading branch information
dleclercpro committed Feb 2, 2024
1 parent 99b1158 commit bb6b1d3
Show file tree
Hide file tree
Showing 20 changed files with 35 additions and 35 deletions.
4 changes: 2 additions & 2 deletions Apps/Broker/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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": "pretty-frontend",
"version": "v2.0.0",
"author": "David Leclerc",
"main": "./src/index.ts",
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions Apps/Common/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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": "pretty-frontend",
"version": "v2.0.0",
"author": "David Leclerc",
"main": "./src/index.ts",
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions Apps/Delivery/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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": "pretty-frontend",
"version": "v2.0.0",
"author": "David Leclerc",
"main": "./src/index.ts",
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions Apps/Order/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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": "pretty-frontend",
"version": "v2.0.0",
"author": "David Leclerc",
"main": "./src/index.ts",
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions Apps/Payment/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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": "pretty-frontend",
"version": "v2.0.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:pretty-frontend
image: dleclercpro/eda-playground-broker:v2.0.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:pretty-frontend
image: dleclercpro/eda-playground-delivery:v2.0.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:pretty-frontend
image: dleclercpro/eda-playground-grafana:v2.0.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:pretty-frontend
image: dleclercpro/eda-playground-order:v2.0.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:pretty-frontend
image: dleclercpro/eda-playground-payment:v2.0.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:pretty-frontend
image: dleclercpro/eda-playground-prometheus:v2.0.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="pretty-frontend"
release="v2.0.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="pretty-frontend"
release="v2.0.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:pretty-frontend
image: dleclercpro/eda-playground-broker:v2.0.0
build:
context: ./Apps
dockerfile: Broker.Dockerfile
Expand All @@ -17,7 +17,7 @@ services:

eda-playground-order:
container_name: eda-playground-order
image: dleclercpro/eda-playground-order:pretty-frontend
image: dleclercpro/eda-playground-order:v2.0.0
build:
context: ./Apps
dockerfile: Order.Dockerfile
Expand All @@ -28,7 +28,7 @@ services:

eda-playground-payment:
container_name: eda-playground-payment
image: dleclercpro/eda-playground-payment:pretty-frontend
image: dleclercpro/eda-playground-payment:v2.0.0
build:
context: ./Apps
dockerfile: Payment.Dockerfile
Expand All @@ -39,7 +39,7 @@ services:

eda-playground-delivery:
container_name: eda-playground-delivery
image: dleclercpro/eda-playground-delivery:pretty-frontend
image: dleclercpro/eda-playground-delivery:v2.0.0
build:
context: ./Apps
dockerfile: Delivery.Dockerfile
Expand All @@ -50,7 +50,7 @@ services:

eda-playground-prometheus:
container_name: eda-playground-prometheus
image: dleclercpro/eda-playground-prometheus:pretty-frontend
image: dleclercpro/eda-playground-prometheus:v2.0.0
build:
context: ./Apps
dockerfile: Prometheus.Dockerfile
Expand All @@ -62,7 +62,7 @@ services:

eda-playground-grafana:
container_name: eda-playground-grafana
image: dleclercpro/eda-playground-grafana:pretty-frontend
image: dleclercpro/eda-playground-grafana:v2.0.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:pretty-frontend
image: dleclercpro/eda-playground-broker:v2.0.0
build:
context: ./Apps
dockerfile: Broker.Dockerfile
Expand All @@ -33,7 +33,7 @@ services:

eda-playground-order:
container_name: eda-playground-order
image: dleclercpro/eda-playground-order:pretty-frontend
image: dleclercpro/eda-playground-order:v2.0.0
build:
context: ./Apps
dockerfile: Order.Dockerfile
Expand All @@ -46,7 +46,7 @@ services:

eda-playground-payment:
container_name: eda-playground-payment
image: dleclercpro/eda-playground-payment:pretty-frontend
image: dleclercpro/eda-playground-payment:v2.0.0
build:
context: ./Apps
dockerfile: Payment.Dockerfile
Expand All @@ -59,7 +59,7 @@ services:

eda-playground-delivery:
container_name: eda-playground-delivery
image: dleclercpro/eda-playground-delivery:pretty-frontend
image: dleclercpro/eda-playground-delivery:v2.0.0
build:
context: ./Apps
dockerfile: Delivery.Dockerfile
Expand All @@ -72,7 +72,7 @@ services:

eda-playground-prometheus:
container_name: eda-playground-prometheus
image: dleclercpro/eda-playground-prometheus:pretty-frontend
image: dleclercpro/eda-playground-prometheus:v2.0.0
build:
context: ./Apps
dockerfile: Prometheus.Dockerfile
Expand All @@ -84,7 +84,7 @@ services:

eda-playground-grafana:
container_name: eda-playground-grafana
image: dleclercpro/eda-playground-grafana:pretty-frontend
image: dleclercpro/eda-playground-grafana:v2.0.0
build:
context: ./Apps
dockerfile: Grafana.Dockerfile
Expand Down

0 comments on commit bb6b1d3

Please sign in to comment.