mirror of
https://github.com/mastodon/chart
synced 2025-03-14 21:11:50 +00:00
Add additional OTEL options (#152)
This commit is contained in:
parent
fd0366d059
commit
29a3645210
|
@ -15,7 +15,7 @@ type: application
|
||||||
# This is the chart version. This version number should be incremented each time
|
# This is the chart version. This version number should be incremented each time
|
||||||
# you make changes to the chart and its templates, including the app version.
|
# you make changes to the chart and its templates, including the app version.
|
||||||
# Versions are expected to follow Semantic Versioning (https://semver.org/)
|
# Versions are expected to follow Semantic Versioning (https://semver.org/)
|
||||||
version: 5.4.0
|
version: 5.4.1
|
||||||
|
|
||||||
# This is the version number of the application being deployed. This version number should be
|
# This is the version number of the application being deployed. This version number should be
|
||||||
# incremented each time you make changes to the application. Versions are not expected to
|
# incremented each time you make changes to the application. Versions are not expected to
|
||||||
|
|
|
@ -203,6 +203,8 @@ spec:
|
||||||
value: {{ coalesce $context.Values.mastodon.sidekiq.otel.endpointUri $context.Values.mastodon.otel.endpointUri }}
|
value: {{ coalesce $context.Values.mastodon.sidekiq.otel.endpointUri $context.Values.mastodon.otel.endpointUri }}
|
||||||
- name: OTEL_SERVICE_NAME_PREFIX
|
- name: OTEL_SERVICE_NAME_PREFIX
|
||||||
value: {{ coalesce $context.Values.mastodon.sidekiq.otel.namePrefix $context.Values.mastodon.otel.namePrefix }}
|
value: {{ coalesce $context.Values.mastodon.sidekiq.otel.namePrefix $context.Values.mastodon.otel.namePrefix }}
|
||||||
|
- name: OTEL_SERVICE_NAME_SEPARATOR
|
||||||
|
value: {{ coalesce $context.Values.mastodon.sidekiq.otel.nameSeparator $context.Values.mastodon.otel.nameSeparator }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
volumeMounts:
|
volumeMounts:
|
||||||
{{- if (not $context.Values.mastodon.s3.enabled) }}
|
{{- if (not $context.Values.mastodon.s3.enabled) }}
|
||||||
|
|
|
@ -193,6 +193,8 @@ spec:
|
||||||
value: {{ coalesce .Values.mastodon.web.otel.endpointUri .Values.mastodon.otel.endpointUri }}
|
value: {{ coalesce .Values.mastodon.web.otel.endpointUri .Values.mastodon.otel.endpointUri }}
|
||||||
- name: OTEL_SERVICE_NAME_PREFIX
|
- name: OTEL_SERVICE_NAME_PREFIX
|
||||||
value: {{ coalesce .Values.mastodon.web.otel.namePrefix .Values.mastodon.otel.namePrefix }}
|
value: {{ coalesce .Values.mastodon.web.otel.namePrefix .Values.mastodon.otel.namePrefix }}
|
||||||
|
- name: OTEL_SERVICE_NAME_SEPARATOR
|
||||||
|
value: {{ coalesce .Values.mastodon.web.otel.nameSeparator .Values.mastodon.otel.nameSeparator }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
volumeMounts:
|
volumeMounts:
|
||||||
{{- if (not .Values.mastodon.s3.enabled) }}
|
{{- if (not .Values.mastodon.s3.enabled) }}
|
||||||
|
|
|
@ -185,6 +185,7 @@ mastodon:
|
||||||
enabled:
|
enabled:
|
||||||
exporterUri:
|
exporterUri:
|
||||||
namePrefix:
|
namePrefix:
|
||||||
|
nameSeparator:
|
||||||
|
|
||||||
workers:
|
workers:
|
||||||
- name: all-queues
|
- name: all-queues
|
||||||
|
@ -384,6 +385,7 @@ mastodon:
|
||||||
enabled:
|
enabled:
|
||||||
exporterUri:
|
exporterUri:
|
||||||
namePrefix:
|
namePrefix:
|
||||||
|
nameSeparator:
|
||||||
|
|
||||||
# HTTP cache buster configuration.
|
# HTTP cache buster configuration.
|
||||||
# See the documentation for more information about this feature:
|
# See the documentation for more information about this feature:
|
||||||
|
@ -413,6 +415,7 @@ mastodon:
|
||||||
enabled: false
|
enabled: false
|
||||||
exporterUri:
|
exporterUri:
|
||||||
namePrefix: mastodon
|
namePrefix: mastodon
|
||||||
|
nameSeparator: "-"
|
||||||
|
|
||||||
# Sets the PREPARED_STATEMENTS environment variable: https://docs.joinmastodon.org/admin/config/#prepared_statements
|
# Sets the PREPARED_STATEMENTS environment variable: https://docs.joinmastodon.org/admin/config/#prepared_statements
|
||||||
preparedStatements: true
|
preparedStatements: true
|
||||||
|
|
Loading…
Reference in New Issue
Block a user