File tree Expand file tree Collapse file tree 6 files changed +16
-14
lines changed
charts/jaeger-opentelemetry Expand file tree Collapse file tree 6 files changed +16
-14
lines changed Original file line number Diff line number Diff line change @@ -15,10 +15,10 @@ type: application
1515# This is the chart version. This version number should be incremented each time you make changes
1616# to the chart and its templates, including the app version.
1717# Versions are expected to follow Semantic Versioning (https://semver.org/)
18- version : 0.1.1
18+ version : 0.1.2
1919
2020# This is the version number of the application being deployed. This version number should be
2121# incremented each time you make changes to the application. Versions are not expected to
2222# follow Semantic Versioning. They should reflect the version the application is using.
2323# It is recommended to use it with quotes.
24- appVersion : " 1.16.1 "
24+ appVersion : " 1.16.2 "
Original file line number Diff line number Diff line change @@ -2,8 +2,8 @@ apiVersion: v1
22kind : ConfigMap
33metadata :
44 name : {{ .Release.Name }}-config
5- namespace : opentelemetry
5+ namespace : {{ $.Values.namespace | default " opentelemetry" }}
66 labels :
77 {{- include "optl-label" . | nindent 3 }}
88data :
9- optl-collector-config : {{toYaml .Values.optl_collector_config | indent 4}}
9+ optl-collector-config : {{toYaml .Values.optl_collector_config | indent 4}}
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ apiVersion: apps/v1
22kind : StatefulSet
33metadata :
44 name : {{ .Release.Name }}-jaeger-all-in-one
5- namespace : opentelemetry
5+ namespace : {{ $.Values.namespace | default " opentelemetry" }}
66 labels :
77 {{- include "stateful label" . | nindent 3 }}
88spec :
Original file line number Diff line number Diff line change 11apiVersion : apps/v1
2- kind : Deployment
2+ kind : Deployment
33metadata :
44 name : {{ .Release.Name }}-optl-deployment
5- namespace : opentelemetry
5+ namespace : {{ $.Values.namespace | default " opentelemetry" }}
66 labels :
77 {{- include "deployment-optl label" . | nindent 3 }}
88spec :
1414 template :
1515 metadata :
1616 name : {{ .Release.Name }}-optl
17- namespace : opentelemetry
1817 labels :
1918 {{- include "deployment-optl label" . | nindent 7 }}
2019 spec :
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ apiVersion: v1
22kind : Service
33metadata :
44 name : {{ .Release.Name }}-optl
5- namespace : opentelemetry
5+ namespace : {{ $.Values.namespace | default " opentelemetry" }}
66 labels :
77 app : opentelemetry
88 component : otel-collector
@@ -23,7 +23,7 @@ apiVersion: v1
2323kind : Service
2424metadata :
2525 name : {{ .Release.Name }}-jaeger-headless
26- namespace : opentelemetry
26+ namespace : {{ $.Values.namespace | default " opentelemetry" }}
2727 labels :
2828 app : opentelemetry
2929 component : optl-collector
@@ -43,7 +43,7 @@ apiVersion: v1
4343kind : Service
4444metadata :
4545 name : {{ .Release.Name }}-jaeger-query
46- namespace : opentelemetry
46+ namespace : {{ $.Values.namespace | default " opentelemetry" }}
4747 labels :
4848 app : opentelemetry
4949 component : optl-collector
Original file line number Diff line number Diff line change 1+ # if namespace is not specified, it defaults to opentelemetry
2+ namespace : " "
3+
14# config_map
25optl_collector_config : |
36 receivers:
@@ -73,9 +76,9 @@ optl_service:
7376 # port: 13133
7477 # protocol: TCP
7578 # targetPort: 13133
76- selector :
77- app : opentelemetry
78- name : optl
79+ # selector:
80+ # app: opentelemetry
81+ # name: optl
7982
8083# service for jaeger-headless
8184jaeger_servie_ports :
You can’t perform that action at this time.
0 commit comments