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
Ensure that otel-collector and otel-agent run as sourcegraph user (#543)
* Ensure that otel-collector and otel-agent run as sourcegraph user
* Update changelog
* Include securityContext in otel deployment + daemonset
* Run helm-docs.sh
Copy file name to clipboardExpand all lines: charts/sourcegraph/README.md
+6Lines changed: 6 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -194,6 +194,9 @@ In addition to the documented values, all services also support the following va
194
194
| nodeExporter.resources | object |`{"limits":{"cpu":"1","memory":"1Gi"},"requests":{"cpu":".2","memory":"100Mi"}}`| Resource requests & limits for the `node-exporter` container, learn more from the [Kubernetes documentation](https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/)|
195
195
| nodeExporter.serviceAccount.create | bool |`false`| Enable creation of ServiceAccount for `node-exporter`|
196
196
| nodeExporter.serviceAccount.name | string |`"node-exporter"`| Name of the ServiceAccount to be created or an existing ServiceAccount |
| openTelemetry.agent.containerSecurityContext.runAsGroup | int |`101`||
199
+
| openTelemetry.agent.containerSecurityContext.runAsUser | int |`100`||
197
200
| openTelemetry.agent.hostPorts | object |`{"otlpGrpc":4317,"otlpHttp":4318,"zpages":55679}`| Resource requests & limits for the `otel-agent` container, learn more from the [Kubernetes documentation](https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/)|
198
201
| openTelemetry.agent.name | string |`"otel-agent"`| Name used by resources. Does not affect service names or PVCs. |
@@ -206,6 +209,9 @@ In addition to the documented values, all services also support the following va
206
209
| openTelemetry.gateway.config.traces.exporters | object |`{}`| Define where traces should be exported to. Read how to configure different backends in the [OpenTelemetry documentation](https://opentelemetry.io/docs/collector/configuration/#exporters)|
207
210
| openTelemetry.gateway.config.traces.exportersTlsSecretName | string |`""`| Define the name of a preexisting secret containing TLS certificates for exporters, which will be mounted under "/tls". Read more about TLS configuration of exporters in the [OpenTelemetry Collector documentation](https://github.com/open-telemetry/opentelemetry-collector/blob/main/config/configtls/README.md)|
208
211
| openTelemetry.gateway.config.traces.processors | object |`{}`| Define trace processors. Read how to configure sampling in the [OpenTelemetry documentation](https://docs.sourcegraph.com/admin/observability/opentelemetry#sampling-traces)|
| openTelemetry.gateway.containerSecurityContext.runAsGroup | int |`101`||
214
+
| openTelemetry.gateway.containerSecurityContext.runAsUser | int |`100`||
209
215
| openTelemetry.gateway.name | string |`"otel-collector"`| Name used by resources. Does not affect service names or PVCs. |
210
216
| openTelemetry.gateway.resources | object |`{"limits":{"cpu":"3","memory":"3Gi"},"requests":{"cpu":"1","memory":"1Gi"}}`| Resource requests & limits for the `otel-collector` container, learn more from the [Kubernetes documentation](https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/)|
211
217
| openTelemetry.gateway.serviceAccount.create | bool |`false`| Enable creation of ServiceAccount for `otel-collector`|
0 commit comments