57 lines
1.3 KiB
YAML
57 lines
1.3 KiB
YAML
apiVersion: kustomize.config.k8s.io/v1beta1
|
|
kind: Kustomization
|
|
|
|
namespace: observability
|
|
|
|
helmGlobals:
|
|
chartHome: .helm/charts
|
|
|
|
helmCharts:
|
|
- name: tempo
|
|
repo: https://grafana-community.github.io/helm-charts
|
|
version: 2.2.3
|
|
releaseName: tempo
|
|
namespace: observability
|
|
valuesFile: values/home.yaml
|
|
includeCRDs: false
|
|
skipTests: true
|
|
|
|
images:
|
|
- name: docker.io/grafana/tempo
|
|
newName: docker.io/grafana/tempo
|
|
digest: sha256:6616b00287a4d7001951b5de117828ad5c6f93744935c1b7a5e044736373352c
|
|
|
|
patches:
|
|
- target:
|
|
group: ""
|
|
version: v1
|
|
kind: Service
|
|
name: tempo
|
|
patch: |-
|
|
- op: replace
|
|
path: /spec/ports
|
|
value:
|
|
- name: tempo-prom-metrics
|
|
port: 3200
|
|
protocol: TCP
|
|
targetPort: 3200
|
|
- name: grpc-tempo-otlp
|
|
port: 4317
|
|
protocol: TCP
|
|
targetPort: 4317
|
|
- target:
|
|
group: apps
|
|
version: v1
|
|
kind: StatefulSet
|
|
name: tempo
|
|
patch: |-
|
|
- op: replace
|
|
path: /spec/template/spec/containers/0/ports
|
|
value:
|
|
- containerPort: 3200
|
|
name: prom-metrics
|
|
protocol: TCP
|
|
- containerPort: 4317
|
|
name: otlp-grpc
|
|
protocol: TCP
|