Skip to content

Latest commit

 

History

History
43 lines (43 loc) · 2.4 KB

distr-tracing-tempo-tempomonolithic-custom-resource.adoc

File metadata and controls

43 lines (43 loc) · 2.4 KB

The following TempoMonolithic CR creates a TempoMonolithic deployment with trace ingestion over OTLP/gRPC and OTLP/HTTP, storing traces in a supported type of storage and exposing Jaeger UI via a route:

+

apiVersion: tempo.grafana.com/v1alpha1
kind: TempoMonolithic
metadata:
  name: <metadata_name>
  namespace: <project_of_tempomonolithic_instance>
spec:
  storage:
    traces:
      backend: <supported_storage_type> # (1)
      size: <value>Gi # (2)
      s3: # (3)
        secret: <secret_name> # (4)
    tls: # (5)
      enabled: true
      caName: <ca_certificate_configmap_name> # (6)
  jaegerui:
    enabled: true # (7)
    route:
      enabled: true # (8)
  resources: # (9)
    total:
      limits:
        memory: <value>Gi
        cpu: <value>m
  1. Type of storage for storing traces: in-memory storage, a persistent volume, or object storage. The value for a persistent volume is pv. The accepted values for object storage are s3, gcs, or azure, depending on the used object store type. The default value is memory for the tmpfs in-memory storage, which is only appropriate for development, testing, demonstrations, and proof-of-concept environments because the data does not persist when the pod is shut down.

  2. Memory size: For in-memory storage, this means the size of the tmpfs volume, where the default is 2Gi. For a persistent volume, this means the size of the persistent volume claim, where the default is 10Gi. For object storage, this means the size of the persistent volume claim for the Tempo WAL, where the default is 10Gi.

  3. Optional: For object storage, the type of object storage. The accepted values are s3, gcs, and azure, depending on the used object store type.

  4. Optional: For object storage, the value of the name in the metadata of the storage secret. The storage secret must be in the same namespace as the TempoMonolithic instance and contain the fields specified in "Table 1. Required secret parameters" in the section "Object storage setup".

  5. Optional.

  6. Optional: Name of a ConfigMap object that contains a CA certificate.

  7. Enables the Jaeger UI.

  8. Enables creation of a route for the Jaeger UI.

  9. Optional.