Skip to content

Commit 1177ba5

Browse files
authored
Merge branch 'main' into 1450dependabot/gradle/src/ad/gradle-production-dependencies-3310552702
2 parents 4aeb634 + 93991f5 commit 1177ba5

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+3995
-3341
lines changed

.env

+6-6
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,9 @@ CART_ADDR=cart:${CART_PORT}
5959
CART_DOCKERFILE=./src/cart/src/Dockerfile
6060

6161
# Checkout Service
62-
CHECKOUT_SERVICE_PORT=5050
63-
CHECKOUT_SERVICE_ADDR=checkoutservice:${CHECKOUT_SERVICE_PORT}
64-
CHECKOUT_SERVICE_DOCKERFILE=./src/checkoutservice/Dockerfile
62+
CHECKOUT_PORT=5050
63+
CHECKOUT_ADDR=checkout:${CHECKOUT_PORT}
64+
CHECKOUT_DOCKERFILE=./src/checkout/Dockerfile
6565

6666
# Currency Service
6767
CURRENCY_PORT=7001
@@ -107,9 +107,9 @@ PAYMENT_ADDR=payment:${PAYMENT_PORT}
107107
PAYMENT_DOCKERFILE=./src/payment/Dockerfile
108108

109109
# Product Catalog Service
110-
PRODUCT_CATALOG_SERVICE_PORT=3550
111-
PRODUCT_CATALOG_SERVICE_ADDR=productcatalogservice:${PRODUCT_CATALOG_SERVICE_PORT}
112-
PRODUCT_CATALOG_DOCKERFILE=./src/productcatalogservice/Dockerfile
110+
PRODUCT_CATALOG_PORT=3550
111+
PRODUCT_CATALOG_ADDR=product-catalog:${PRODUCT_CATALOG_PORT}
112+
PRODUCT_CATALOG_DOCKERFILE=./src/product-catalog/Dockerfile
113113

114114
# Quote Service
115115
QUOTE_PORT=8090

.github/workflows/component-build-images.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,8 @@ jobs:
6363
tag_suffix: cart
6464
context: ./
6565
setup-qemu: false
66-
- file: ./src/checkoutservice/Dockerfile
67-
tag_suffix: checkoutservice
66+
- file: ./src/checkout/Dockerfile
67+
tag_suffix: checkout
6868
context: ./
6969
setup-qemu: true
7070
- file: ./src/currency/Dockerfile
@@ -107,8 +107,8 @@ jobs:
107107
tag_suffix: payment
108108
context: ./
109109
setup-qemu: true
110-
- file: ./src/productcatalogservice/Dockerfile
111-
tag_suffix: productcatalogservice
110+
- file: ./src/product-catalog/Dockerfile
111+
tag_suffix: product-catalog
112112
context: ./
113113
setup-qemu: true
114114
- file: ./src/quote/Dockerfile

.github/workflows/label-pr.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ jobs:
1515
contents: read
1616
steps:
1717
- name: Checkout
18-
uses: actions/checkout@v2
18+
uses: actions/checkout@v4
1919

2020
- name: Check for changed files
2121
id: file_changes
22-
uses: dorny/paths-filter@v2
22+
uses: dorny/paths-filter@v3
2323
with:
2424
list-files: shell
2525
filters: |

.github/workflows/stale.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
stale:
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/stale@v8
15+
- uses: actions/stale@v9
1616
with:
1717
stale-pr-message: 'This PR was marked stale due to lack of activity. It will be closed in 7 days.'
1818
close-pr-message: 'Closed as inactive. Feel free to reopen if this PR is still being worked on.'

.licenserc.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,10 @@
4242
"src/cart/src/obj/",
4343
"src/cart/tests/obj/",
4444
"src/currency/build/",
45-
"src/checkoutservice/genproto/",
45+
"src/checkout/genproto/",
4646
"src/featureflagservice/assets/vendor/",
4747
"src/featureflagservice/priv/",
48-
"src/productcatalogservice/genproto/",
48+
"src/product-catalog/genproto/",
4949
"src/react-native-app/ios/Pods/",
5050
"src/react-native-app/ios/build/",
5151
"src/react-native-app/android/app/build/",

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,10 @@ the release.
6464
([#1863](https://github.com/open-telemetry/opentelemetry-demo/pull/1863))
6565
* [recommendation] rename recommendationservice to recommendation
6666
([#1865](https://github.com/open-telemetry/opentelemetry-demo/pull/1865))
67+
* [product-catalog] rename productcatalogservice to product-catalog
68+
([#1864](https://github.com/open-telemetry/opentelemetry-demo/pull/1864))
69+
* [checkout] rename checkoutservice to checkout
70+
([#1867](https://github.com/open-telemetry/opentelemetry-demo/pull/1867))
6771

6872
## 1.12.0
6973

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ docker-generate-protobuf:
139139

140140
.PHONY: clean
141141
clean:
142-
rm -rf ./src/{checkoutservice,productcatalogservice}/genproto/oteldemo/
142+
rm -rf ./src/{checkout,product-catalog}/genproto/oteldemo/
143143
rm -rf ./src/recommendation/{demo_pb2,demo_pb2_grpc}.py
144144

145145
.PHONY: check-clean-work-tree

docker-compose-tests.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -39,12 +39,12 @@ services:
3939
environment:
4040
- AD_ADDR
4141
- CART_ADDR
42-
- CHECKOUT_SERVICE_ADDR
42+
- CHECKOUT_ADDR
4343
- CURRENCY_ADDR
4444
- EMAIL_ADDR
4545
- FRONTEND_ADDR
4646
- PAYMENT_ADDR
47-
- PRODUCT_CATALOG_SERVICE_ADDR
47+
- PRODUCT_CATALOG_ADDR
4848
- RECOMMENDATION_ADDR
4949
- SHIPPING_ADDR
5050
- KAFKA_SERVICE_ADDR
@@ -63,7 +63,7 @@ services:
6363
condition: service_started
6464
cart:
6565
condition: service_started
66-
checkoutservice:
66+
checkout:
6767
condition: service_started
6868
currency:
6969
condition: service_started
@@ -75,7 +75,7 @@ services:
7575
condition: service_started
7676
payment:
7777
condition: service_started
78-
productcatalogservice:
78+
product-catalog:
7979
condition: service_started
8080
quote:
8181
condition: service_started

docker-compose.minimal.yml

+23-23
Original file line numberDiff line numberDiff line change
@@ -81,34 +81,34 @@ services:
8181
logging: *logging
8282

8383
# Checkout service
84-
checkoutservice:
85-
image: ${IMAGE_NAME}:${DEMO_VERSION}-checkoutservice
86-
container_name: checkout-service
84+
checkout:
85+
image: ${IMAGE_NAME}:${DEMO_VERSION}-checkout
86+
container_name: checkout
8787
build:
8888
context: ./
89-
dockerfile: ${CHECKOUT_SERVICE_DOCKERFILE}
89+
dockerfile: ${CHECKOUT_DOCKERFILE}
9090
cache_from:
91-
- ${IMAGE_NAME}:${IMAGE_VERSION}-checkoutservice
91+
- ${IMAGE_NAME}:${IMAGE_VERSION}-checkout
9292
deploy:
9393
resources:
9494
limits:
9595
memory: 20M
9696
restart: unless-stopped
9797
ports:
98-
- "${CHECKOUT_SERVICE_PORT}"
98+
- "${CHECKOUT_PORT}"
9999
environment:
100-
- CHECKOUT_SERVICE_PORT
100+
- CHECKOUT_PORT
101101
- CART_ADDR
102102
- CURRENCY_ADDR
103103
- EMAIL_ADDR
104104
- FLAGD_HOST
105105
- PAYMENT_ADDR
106-
- PRODUCT_CATALOG_SERVICE_ADDR
106+
- PRODUCT_CATALOG_ADDR
107107
- SHIPPING_ADDR
108108
- OTEL_EXPORTER_OTLP_ENDPOINT
109109
- OTEL_EXPORTER_OTLP_METRICS_TEMPORALITY_PREFERENCE
110110
- OTEL_RESOURCE_ATTRIBUTES
111-
- OTEL_SERVICE_NAME=checkoutservice
111+
- OTEL_SERVICE_NAME=checkout
112112
depends_on:
113113
cart:
114114
condition: service_started
@@ -118,7 +118,7 @@ services:
118118
condition: service_started
119119
payment:
120120
condition: service_started
121-
productcatalogservice:
121+
product-catalog:
122122
condition: service_started
123123
shipping:
124124
condition: service_started
@@ -201,9 +201,9 @@ services:
201201
- FRONTEND_ADDR
202202
- AD_ADDR
203203
- CART_ADDR
204-
- CHECKOUT_SERVICE_ADDR
204+
- CHECKOUT_ADDR
205205
- CURRENCY_ADDR
206-
- PRODUCT_CATALOG_SERVICE_ADDR
206+
- PRODUCT_CATALOG_ADDR
207207
- RECOMMENDATION_ADDR
208208
- SHIPPING_ADDR
209209
- OTEL_EXPORTER_OTLP_ENDPOINT
@@ -221,11 +221,11 @@ services:
221221
condition: service_started
222222
cart:
223223
condition: service_started
224-
checkoutservice:
224+
checkout:
225225
condition: service_started
226226
currency:
227227
condition: service_started
228-
productcatalogservice:
228+
product-catalog:
229229
condition: service_started
230230
quote:
231231
condition: service_started
@@ -379,28 +379,28 @@ services:
379379
logging: *logging
380380

381381
# Product Catalog service
382-
productcatalogservice:
383-
image: ${IMAGE_NAME}:${DEMO_VERSION}-productcatalogservice
384-
container_name: product-catalog-service
382+
product-catalog:
383+
image: ${IMAGE_NAME}:${DEMO_VERSION}-product-catalog
384+
container_name: product-catalog
385385
build:
386386
context: ./
387387
dockerfile: ${PRODUCT_CATALOG_DOCKERFILE}
388388
cache_from:
389-
- ${IMAGE_NAME}:${IMAGE_VERSION}-productcatalogservice
389+
- ${IMAGE_NAME}:${IMAGE_VERSION}-product-catalog
390390
deploy:
391391
resources:
392392
limits:
393393
memory: 20M
394394
restart: unless-stopped
395395
ports:
396-
- "${PRODUCT_CATALOG_SERVICE_PORT}"
396+
- "${PRODUCT_CATALOG_PORT}"
397397
environment:
398398
- FLAGD_HOST
399-
- PRODUCT_CATALOG_SERVICE_PORT
399+
- PRODUCT_CATALOG_PORT
400400
- OTEL_EXPORTER_OTLP_ENDPOINT
401401
- OTEL_EXPORTER_OTLP_METRICS_TEMPORALITY_PREFERENCE
402402
- OTEL_RESOURCE_ATTRIBUTES
403-
- OTEL_SERVICE_NAME=productcatalogservice
403+
- OTEL_SERVICE_NAME=product-catalog
404404
depends_on:
405405
otel-collector:
406406
condition: service_started
@@ -453,15 +453,15 @@ services:
453453
environment:
454454
- FLAGD_HOST
455455
- RECOMMENDATION_PORT
456-
- PRODUCT_CATALOG_SERVICE_ADDR
456+
- PRODUCT_CATALOG_ADDR
457457
- OTEL_PYTHON_LOG_CORRELATION=true
458458
- OTEL_EXPORTER_OTLP_ENDPOINT
459459
- OTEL_EXPORTER_OTLP_METRICS_TEMPORALITY_PREFERENCE
460460
- OTEL_RESOURCE_ATTRIBUTES
461461
- OTEL_SERVICE_NAME=recommendation
462462
- PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION=python
463463
depends_on:
464-
productcatalogservice:
464+
product-catalog:
465465
condition: service_started
466466
otel-collector:
467467
condition: service_started

0 commit comments

Comments
 (0)