forked from open-telemetry/opentelemetry-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* main: (138 commits) docs: update sig meeting schedule (open-telemetry#1567) chore(deps): upgrade otel collector contrib and opensearch (open-telemetry#1566) fix(loadgenerator): use add_hooks openfeature method (open-telemetry#1565) Revert "remove axoflow link (open-telemetry#1457)" (open-telemetry#1563) feat: configure feature flag tracing for Python services (open-telemetry#1553) chore(deps): upgrade go dependencies to latest versions (open-telemetry#1561) remove deprecated version property (open-telemetry#1557) chore(deps): upgrade otel collector contrib, grafana and prometheus (open-telemetry#1559) add imageprovider (open-telemetry#1552) [flagd] - upgrade to latest version and memory limits (open-telemetry#1554) update kubernetes manifest to 1.9.0 (open-telemetry#1555) [chore] specify default value for tracetest image version (open-telemetry#1551) improve baggage propagation (open-telemetry#1545) Bump gradle/wrapper-validation-action from 3.3.1 to 3.3.2 (open-telemetry#1548) [kafka][checkoutservice][frauddetectionservice] add kafkaQueueProblems featureflag (open-telemetry#1528) fix(productcatalogservice): handle err returned from openfeature.SetProvider func (open-telemetry#1535) feat(otelcol): add redisreceiver (open-telemetry#1537) chore(deps): upgrade opentelemetry-java-instrumentation for kafka to 2.3.0 (open-telemetry#1533) Bump gradle/wrapper-validation-action from 3.3.0 to 3.3.1 (open-telemetry#1539) chore(deps): upgrade opentelemetry-java-instrumentation to 2.3.0 (open-telemetry#1532) ... # Conflicts: # docker-compose.minimal.yml # src/frontend/package-lock.json
- Loading branch information
Showing
222 changed files
with
8,435 additions
and
25,364 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
# Copyright The OpenTelemetry Authors | ||
# SPDX-License-Identifier: Apache-2.0 | ||
# adds a label to a pull request if certain files are changed | ||
name: Label Pull Requests | ||
|
||
on: | ||
pull_request_target: | ||
types: [opened, synchronize, reopened] | ||
|
||
jobs: | ||
label: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
pull-requests: write | ||
contents: read | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
|
||
- name: Check for changed files | ||
id: file_changes | ||
uses: dorny/paths-filter@v2 | ||
with: | ||
list-files: shell | ||
filters: | | ||
docsUpdateRequired: | ||
- 'src/flagd/**' | ||
helmUpdateRequired: | ||
- '.env' | ||
- 'docker-compose*.yml' | ||
- 'src/flagd/**' | ||
- 'src/grafana/**' | ||
- 'src/otelcollector/**' | ||
- 'src/prometheus/**' | ||
- name: "Add Label: docs-update-required" | ||
if: steps.file_changes.outputs.docsUpdateRequired == 'true' | ||
uses: actions/github-script@v7 | ||
with: | ||
script: | | ||
const issue_number = context.issue.number; | ||
github.rest.issues.addLabels({ | ||
issue_number: issue_number, | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
labels: ['docs-update-required'] | ||
}) | ||
- name: "Add Label: helm-update-required" | ||
if: steps.file_changes.outputs.helmUpdateRequired == 'true' | ||
uses: actions/github-script@v7 | ||
with: | ||
script: | | ||
const issue_number = context.issue.number; | ||
github.rest.issues.addLabels({ | ||
issue_number: issue_number, | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
labels: ['helm-update-required'] | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# Copyright The OpenTelemetry Authors | ||
# SPDX-License-Identifier: Apache-2.0 | ||
name: Nightly Release | ||
|
||
on: | ||
schedule: | ||
# Runs at 00:00 UTC every day | ||
- cron: '0 0 * * *' | ||
|
||
jobs: | ||
build_and_push_images: | ||
uses: ./.github/workflows/build-images.yml | ||
if: github.repository == 'open-telemetry/opentelemetry-demo' | ||
with: | ||
push: true | ||
version: nightly-${{ github.run_id }} | ||
secrets: inherit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,48 +3,18 @@ | |
name: Integration Tests | ||
|
||
on: | ||
pull_request_target: | ||
branches: | ||
- main | ||
types: [closed] | ||
pull_request_review: | ||
types: | ||
- submitted | ||
|
||
jobs: | ||
build_runner: | ||
runs-on: ubuntu-latest | ||
name: "Build Runner" | ||
if: github.event.pull_request.merged == true | ||
steps: | ||
- name: metal-runner-action | ||
uses: equinix-labs/[email protected] | ||
with: | ||
github_token: ${{ secrets.GH_CI_SECRET }} | ||
metal_auth_token: ${{ secrets.METAL_AUTH_TOKEN }} | ||
metal_project_id: ${{ secrets.METAL_PROJECT_ID }} | ||
metro: "da" | ||
plan: "c3.small.x86" | ||
os: "ubuntu_20_04" | ||
run_tests: | ||
needs: build_runner | ||
runs-on: self-hosted | ||
runs-on: ubuntu-latest | ||
name: "Run CI" | ||
if: github.event.review.state == 'APPROVED' | ||
steps: | ||
- name: check out code | ||
uses: actions/checkout@v3 | ||
- name: install docker | ||
run: | | ||
curl -fsSL https://get.docker.com -o get-docker.sh | ||
sudo sh get-docker.sh | ||
uses: actions/checkout@v4 | ||
- name: run tracetesting | ||
run: | | ||
make build && make run-tracetesting | ||
destroy: | ||
needs: [build_runner, run_tests] | ||
runs-on: ubuntu-latest | ||
name: "Cleanup" | ||
steps: | ||
- name: metal-sweeper-action | ||
uses: equinix-labs/[email protected] | ||
with: | ||
authToken: ${{ secrets.METAL_AUTH_TOKEN }} | ||
projectID: ${{ secrets.METAL_PROJECT_ID }} | ||
keepProject: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.