Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion charts/internal-gateway/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
appVersion: v0.0.0
description: A Helm chart for Codefresh Internal Gateway
name: internal-gateway
version: 0.12.0
version: 0.12.1
home: https://github.com/codefresh-io/helm-charts
keywords:
- codefresh
Expand Down
4 changes: 2 additions & 2 deletions charts/internal-gateway/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# internal-gateway

![Version: 0.12.0](https://img.shields.io/badge/Version-0.12.0-informational?style=flat-square) ![AppVersion: v0.0.0](https://img.shields.io/badge/AppVersion-v0.0.0-informational?style=flat-square)
![Version: 0.12.1](https://img.shields.io/badge/Version-0.12.1-informational?style=flat-square) ![AppVersion: v0.0.0](https://img.shields.io/badge/AppVersion-v0.0.0-informational?style=flat-square)

A Helm chart for Codefresh Internal Gateway

Expand Down Expand Up @@ -58,7 +58,7 @@ A Helm chart for Codefresh Internal Gateway
| otel.config.endpoint | string | `"localhost:4317"` | |
| otel.config.service_name | string | `"codefresh-internal-gateway"` | |
| otel.enabled | bool | `false` | |
| otel.httpSnippet | string | `"otel_trace on;\notel_service_name {{ default \"codefresh-internal-gateway\" .Values.otel.config.service_name }};\notel_trace_context \"inject\";\notel_exporter {\n endpoint {{ .Values.otel.config.endpoint}};\n}\n"` | Snippet to be included in the http block of nginx.conf for OTEL configs. See here for available directives https://nginx.org/en/docs/ngx_otel_module.html |
| otel.httpSnippet | string | `"otel_trace on;\notel_service_name {{ default \"codefresh-internal-gateway\" .Values.otel.config.service_name }};\notel_trace_context \"propagate\";\notel_exporter {\n endpoint {{ .Values.otel.config.endpoint}};\n}\n"` | Snippet to be included in the http block of nginx.conf for OTEL configs. See here for available directives https://nginx.org/en/docs/ngx_otel_module.html |
| otel.modulePath | string | `"modules/ngx_otel_module.so"` | Path to the OpenTelemetry NGINX module - should be present in the NGINX image, images with -otel tags include it |
| pdb | object | See below | PDB parameters |
| podAnnotations | object | See below | Pod annotations |
Expand Down
2 changes: 1 addition & 1 deletion charts/internal-gateway/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ otel:
httpSnippet: |
otel_trace on;
otel_service_name {{ default "codefresh-internal-gateway" .Values.otel.config.service_name }};
otel_trace_context "inject";
otel_trace_context "propagate";
otel_exporter {
endpoint {{ .Values.otel.config.endpoint}};
}
Loading