Skip to content

Commit

Permalink
Set default values to OTEL_EXPORTER_* variables
Browse files Browse the repository at this point in the history
  • Loading branch information
PabloCastellano committed Sep 6, 2023
1 parent 13098fb commit ce4daa6
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 10 deletions.
2 changes: 1 addition & 1 deletion charts/blobscan-api/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ icon: https://raw.githubusercontent.com/Blobscan/blobscan/next/.github/assets/bl
sources:
- https://github.com/blobscan/blobscan/
type: application
version: 0.2.7
version: 0.2.8
maintainers:
- name: PabloCastellano
email: pablo@anche.no
2 changes: 1 addition & 1 deletion charts/blobscan-api/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

# blobscan-api

![Version: 0.2.7](https://img.shields.io/badge/Version-0.2.7-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
![Version: 0.2.8](https://img.shields.io/badge/Version-0.2.8-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)

Blobscan tRPC API

Expand Down
4 changes: 2 additions & 2 deletions charts/blobscan-api/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ config:
# Opentelemetry
OTLP_AUTH_USERNAME: ""
OTLP_AUTH_PASSWORD: ""
OTEL_EXPORTER_OTLP_PROTOCOL: ""
OTEL_EXPORTER_OTLP_ENDPOINT: ""
OTEL_EXPORTER_OTLP_PROTOCOL: "http/protobuf"
OTEL_EXPORTER_OTLP_ENDPOINT: "http://localhost:4318"
METRICS_ENABLED: "true"
TRACES_ENABLED: "false"
# Swarm storage specific
Expand Down
2 changes: 1 addition & 1 deletion charts/blobscan/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ icon: https://raw.githubusercontent.com/Blobscan/blobscan/next/.github/assets/bl
sources:
- https://github.com/blobscan/blobscan/
type: application
version: 0.2.11
version: 0.2.12
maintainers:
- name: PabloCastellano
email: pablo@anche.no
Expand Down
4 changes: 2 additions & 2 deletions charts/blobscan/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

# blobscan

![Version: 0.2.11](https://img.shields.io/badge/Version-0.2.11-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
![Version: 0.2.12](https://img.shields.io/badge/Version-0.2.12-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)

Blobscan is the first blockchain explorer that helps to navigate and visualize those EIP-4844 blobs

Expand All @@ -28,7 +28,7 @@ Blobscan is the first blockchain explorer that helps to navigate and visualize t
| blobscandb.auth.password | string | `"postgres"` | |
| blobscandb.auth.postgresPassword | string | `"postgres"` | |
| blobscandb.auth.username | string | `"postgres"` | |
| blobscandb.enabled | bool | `true` | If enabled a postgres chart will be deployed as a dependency Check out https://artifacthub.io/packages/helm/bitnami/postgresql for all possible commands |
| blobscandb.enabled | bool | `true` | If enabled a postgres chart will be deployed as a dependency |
| blobscandb.image.pullPolicy | string | `"IfNotPresent"` | |
| blobscandb.image.registry | string | `"docker.io"` | |
| blobscandb.image.repository | string | `"bitnami/postgresql"` | |
Expand Down
7 changes: 4 additions & 3 deletions charts/blobscan/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,9 @@ config:
# Opentelemetry
OTLP_AUTH_USERNAME: ""
OTLP_AUTH_PASSWORD: ""
OTEL_EXPORTER_OTLP_PROTOCOL: ""
OTEL_EXPORTER_OTLP_ENDPOINT: ""
OTEL_EXPORTER_OTLP_PROTOCOL: "http/protobuf"
OTEL_EXPORTER_OTLP_ENDPOINT: "http://localhost:4318"

METRICS_ENABLED: "true"
TRACES_ENABLED: "false"

Expand Down Expand Up @@ -216,9 +217,9 @@ serviceMonitor:
# -- ServiceMonitor relabelings
relabelings: []

# Check out https://artifacthub.io/packages/helm/bitnami/postgresql for all possible configs
blobscandb:
# -- If enabled a postgres chart will be deployed as a dependency
# Check out https://artifacthub.io/packages/helm/bitnami/postgresql for all possible commands
enabled: true
auth:
postgresPassword: postgres
Expand Down

0 comments on commit ce4daa6

Please sign in to comment.