Skip to content

Commit

Permalink
Merge branch 'main' into renovate/node-18.x
Browse files Browse the repository at this point in the history
  • Loading branch information
cartersocha authored Aug 15, 2023
2 parents 8723daa + 24befa9 commit 225b6b6
Show file tree
Hide file tree
Showing 17 changed files with 935 additions and 463 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/build-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,6 @@ jobs:
- file: ./src/loadgenerator/Dockerfile
tag_suffix: loadgenerator
context: ./
- file: ./src/otelcollector/Dockerfile
tag_suffix: otelcollector
context: ./
- file: ./src/paymentservice/Dockerfile
tag_suffix: paymentservice
context: ./
Expand Down
6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,8 @@ release.
([#935](https://github.com/open-telemetry/opentelemetry-demo/pull/935))
* [cartservice] update service to .NET 7
([#942](https://github.com/open-telemetry/opentelemetry-demo/pull/942))
* [tests] Add trace-based testing examples
([#877](https://github.com/open-telemetry/opentelemetry-demo/pull/877))
* Introduce minimal mode to run demo
([#872](https://github.com/open-telemetry/opentelemetry-demo/pull/872))
* [frontendproxy]Envoy expose a route for the collector to route frontend spans
Expand All @@ -63,10 +65,10 @@ release.
([#988](https://github.com/open-telemetry/opentelemetry-demo/pull/988))
* [FraudDetectionService] Updated Kotlin version and OTel dependencies
([#987](https://github.com/open-telemetry/opentelemetry-demo/pull/987))
* [otelcol] Use the collector builder to produce otelcol docker image
([#944](https://github.com/open-telemetry/opentelemetry-demo/pull/944))
* [quoteservice] update php dependencies
([#994](https://github.com/open-telemetry/opentelemetry-demo/issues/994))
* [tests] Update trace-based tests run script
([#1018](https://github.com/open-telemetry/opentelemetry-demo/pull/1018))
* [PaymentService] Update node to LTS version and bump deps
([#1029](https://github.com/open-telemetry/opentelemetry-demo/issues/1029))

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ run-tests:
docker compose run traceBasedTests

run-tracetesting:
docker compose run traceBasedTests
docker compose run traceBasedTests ${SERVICES_TO_TEST}

.PHONY: generate-protobuf
generate-protobuf:
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@ keeping it up to date for you.
## Contributing

To get involved with the project see our [CONTRIBUTING](CONTRIBUTING.md)
documentation. Our [SIG Calls](CONTRIBUTING.md#join-a-sig-call) are Mondays at
8:15 AM PST and anyone is welcome.
documentation. Our [SIG Calls](CONTRIBUTING.md#join-a-sig-call) are every other
Monday at 8:30 AM PST and anyone is welcome.

## Project leadership

Expand Down
11 changes: 3 additions & 8 deletions docker-compose.minimal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -486,7 +486,7 @@ services:

# Grafana
grafana:
image: grafana/grafana:9.4.7
image: grafana/grafana:9.5.7
container_name: grafana
deploy:
resources:
Expand All @@ -501,13 +501,8 @@ services:

# OpenTelemetry Collector
otelcol:
image: ${IMAGE_NAME}:${IMAGE_VERSION}-otelcol
image: otel/opentelemetry-collector-contrib:0.82.0
container_name: otel-col
build:
context: ./
dockerfile: ./src/otelcollector/Dockerfile
cache_from:
- ${IMAGE_NAME}:${IMAGE_VERSION}-otelcol
deploy:
resources:
limits:
Expand All @@ -529,7 +524,7 @@ services:

# Prometheus
prometheus:
image: quay.io/prometheus/prometheus:v2.43.0
image: quay.io/prometheus/prometheus:v2.46.0
container_name: prometheus
command:
- --web.console.templates=/etc/prometheus/consoles
Expand Down
11 changes: 3 additions & 8 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -630,7 +630,7 @@ services:

# Grafana
grafana:
image: grafana/grafana:9.4.7
image: grafana/grafana:9.5.7
container_name: grafana
deploy:
resources:
Expand All @@ -645,13 +645,8 @@ services:

# OpenTelemetry Collector
otelcol:
image: ${IMAGE_NAME}:${IMAGE_VERSION}-otelcol
image: otel/opentelemetry-collector-contrib:0.82.0
container_name: otel-col
build:
context: ./
dockerfile: ./src/otelcollector/Dockerfile
cache_from:
- ${IMAGE_NAME}:${IMAGE_VERSION}-otelcol
deploy:
resources:
limits:
Expand All @@ -673,7 +668,7 @@ services:

# Prometheus
prometheus:
image: quay.io/prometheus/prometheus:v2.43.0
image: quay.io/prometheus/prometheus:v2.46.0
container_name: prometheus
command:
- --web.console.templates=/etc/prometheus/consoles
Expand Down
Loading

0 comments on commit 225b6b6

Please sign in to comment.