You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -55,6 +55,11 @@ A Helm chart for Codefresh Internal Gateway
55
55
| nginx.config.workerRlimitNofile | string |`"1047552"`| Changes the limit on the largest size of a core file (RLIMIT_CORE) for worker processes. Used to increase the limit without restarting the main process. |
56
56
| nginx.extraConfigsPatterns | list |`[]`||
57
57
| nginx.scriptFilesPatterns | list |`[]`| Path to NJS scripts |
| 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|
62
+
| 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 |
58
63
| pdb | object | See below | PDB parameters |
59
64
| podAnnotations | object | See below | Pod annotations |
60
65
| podSecurityContext | object | See below | Pod Security Context parameters |
Copy file name to clipboardExpand all lines: charts/internal-gateway/values.yaml
+17-1Lines changed: 17 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -195,7 +195,7 @@ container:
195
195
image:
196
196
registry: docker.io
197
197
repository: nginxinc/nginx-unprivileged
198
-
tag: 1.29-alpine
198
+
tag: 1.29-alpine-otel
199
199
200
200
env: {}
201
201
envFrom: []
@@ -329,3 +329,19 @@ rbac:
329
329
330
330
keda:
331
331
enabled: false
332
+
333
+
otel:
334
+
enabled: false
335
+
# -- Path to the OpenTelemetry NGINX module - should be present in the NGINX image, images with -otel tags include it
336
+
modulePath: "modules/ngx_otel_module.so"
337
+
config:
338
+
service_name: "codefresh-internal-gateway"
339
+
endpoint: "localhost:4317"
340
+
# -- 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
0 commit comments