From df2bd058309ac234eebdad3b0682a137e27dfc44 Mon Sep 17 00:00:00 2001 From: Saumit Date: Sat, 4 Oct 2025 01:36:57 +0530 Subject: Add tested Helm chart and configuration files for OpenTelemetry demo services --- astroshop-helm/email/templates/service.yaml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 astroshop-helm/email/templates/service.yaml (limited to 'astroshop-helm/email/templates/service.yaml') diff --git a/astroshop-helm/email/templates/service.yaml b/astroshop-helm/email/templates/service.yaml new file mode 100644 index 0000000..a32ae65 --- /dev/null +++ b/astroshop-helm/email/templates/service.yaml @@ -0,0 +1,16 @@ +apiVersion: v1 +kind: Service +metadata: + name: {{ .Values.namespace }}-{{ include "email.fullname" . }} + labels: + app.kubernetes.io/component: emailservice + app.kubernetes.io/part-of: opentelemetry-demo + opentelemetry.io/name: {{ .Values.namespace }}-{{ include "email.fullname" . }} + {{- include "email.labels" . | nindent 4 }} +spec: + type: {{ .Values.opentelemetryDemoEmailservice.type }} + selector: + opentelemetry.io/name: {{ .Values.namespace }}-{{ include "email.fullname" . }} + {{- include "email.selectorLabels" . | nindent 4 }} + ports: + {{- .Values.opentelemetryDemoEmailservice.ports | toYaml | nindent 2 }} -- cgit v1.2.3