Skip to content

Commit f71b264

Browse files
authored
[demo] - release 1.8.0 (#1026)
* Demo release 1.8.0 Signed-off-by: Pierre Tessier <pierre@pierretessier.com> * Demo release 1.8.0 Signed-off-by: Pierre Tessier <pierre@pierretessier.com> * Demo release 1.8.0 Signed-off-by: Pierre Tessier <pierre@pierretessier.com> * Demo release 1.8.0 Signed-off-by: Pierre Tessier <pierre@pierretessier.com> * Demo release 1.8.0 Signed-off-by: Pierre Tessier <pierre@pierretessier.com> * Demo release 1.8.0 Signed-off-by: Pierre Tessier <pierre@pierretessier.com> --------- Signed-off-by: Pierre Tessier <pierre@pierretessier.com>
1 parent 3f51bc2 commit f71b264

File tree

194 files changed

+2832
-1095
lines changed

Some content is hidden

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

194 files changed

+2832
-1095
lines changed

.github/actions/setup/action.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -33,3 +33,4 @@ runs:
3333
helm repo add prometheus https://prometheus-community.github.io/helm-charts
3434
helm repo add grafana https://grafana.github.io/helm-charts
3535
helm repo add jaeger https://jaegertracing.github.io/helm-charts
36+
helm repo add opensearch https://opensearch-project.github.io/helm-charts

.github/workflows/demo-test.yaml

+2-1
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,5 @@ jobs:
2525
--chart-repos opentelemetry-collector=https://open-telemetry.github.io/opentelemetry-helm-charts
2626
--chart-repos prometheus=https://prometheus-community.github.io/helm-charts
2727
--chart-repos grafana=https://grafana.github.io/helm-charts
28-
--chart-repos jaeger=https://jaegertracing.github.io/helm-charts"
28+
--chart-repos jaeger=https://jaegertracing.github.io/helm-charts
29+
--chart-repos opensearch=https://opensearch-project.github.io/helm-charts"

.github/workflows/lint.yaml

+2-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ jobs:
2323
--chart-repos opentelemetry-collector=https://open-telemetry.github.io/opentelemetry-helm-charts
2424
--chart-repos prometheus=https://prometheus-community.github.io/helm-charts
2525
--chart-repos grafana=https://grafana.github.io/helm-charts
26-
--chart-repos jaeger=https://jaegertracing.github.io/helm-charts"
26+
--chart-repos jaeger=https://jaegertracing.github.io/helm-charts
27+
--chart-repos opensearch=https://opensearch-project.github.io/helm-charts"
2728

2829
- name: Run make check-examples
2930
run: make check-examples

.github/workflows/release.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ jobs:
3030
helm repo add prometheus https://prometheus-community.github.io/helm-charts
3131
helm repo add grafana https://grafana.github.io/helm-charts
3232
helm repo add jaeger https://jaegertracing.github.io/helm-charts
33+
helm repo add opensearch https://opensearch-project.github.io/helm-charts
3334
3435
- name: Run chart-releaser
3536
uses: helm/chart-releaser-action@v1.6.0

charts/opentelemetry-demo/Chart.lock

+9-6
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,18 @@
11
dependencies:
22
- name: opentelemetry-collector
33
repository: https://open-telemetry.github.io/opentelemetry-helm-charts
4-
version: 0.78.0
4+
version: 0.80.1
55
- name: jaeger
66
repository: https://jaegertracing.github.io/helm-charts
7-
version: 0.73.1
7+
version: 1.0.0
88
- name: prometheus
99
repository: https://prometheus-community.github.io/helm-charts
10-
version: 25.8.2
10+
version: 25.12.0
1111
- name: grafana
1212
repository: https://grafana.github.io/helm-charts
13-
version: 7.2.1
14-
digest: sha256:484dba15dc44971890d1e7c33d8d2893e2f1ecc976478a75c326b5884bcc1dd8
15-
generated: "2024-01-16T18:53:08.919148-05:00"
13+
version: 7.3.0
14+
- name: opensearch
15+
repository: https://opensearch-project.github.io/helm-charts
16+
version: 2.17.2
17+
digest: sha256:3f338e28c048d248b87ea2357d23342e71e0cfc76d0a4e9c81d2ff65d4623856
18+
generated: "2024-02-18T00:49:24.628921-05:00"

charts/opentelemetry-demo/Chart.yaml

+10-6
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apiVersion: v2
22
type: application
33
name: opentelemetry-demo
4-
version: 0.28.3
4+
version: 0.29.0
55
description: opentelemetry demo helm chart
66
home: https://opentelemetry.io/
77
sources:
@@ -11,21 +11,25 @@ maintainers:
1111
- name: puckpuck
1212
- name: tylerhelmuth
1313
icon: https://opentelemetry.io/img/logos/opentelemetry-logo-nav.png
14-
appVersion: "1.7.0"
14+
appVersion: "1.8.0"
1515
dependencies:
1616
- name: opentelemetry-collector
17-
version: 0.78.0
17+
version: 0.80.1
1818
repository: https://open-telemetry.github.io/opentelemetry-helm-charts
1919
condition: opentelemetry-collector.enabled
2020
- name: jaeger
21-
version: 0.73.1
21+
version: 1.0.0
2222
repository: https://jaegertracing.github.io/helm-charts
2323
condition: jaeger.enabled
2424
- name: prometheus
25-
version: 25.8.2
25+
version: 25.12.0
2626
repository: https://prometheus-community.github.io/helm-charts
2727
condition: prometheus.enabled
2828
- name: grafana
29-
version: 7.2.1
29+
version: 7.3.0
3030
repository: https://grafana.github.io/helm-charts
3131
condition: grafana.enabled
32+
- name: opensearch
33+
version: 2.17.2
34+
repository: https://opensearch-project.github.io/helm-charts
35+
condition: opensearch.enabled

0 commit comments

Comments
 (0)