pinpoint-apm / pinpoint-kubernetes

Apache License 2.0
25 stars 38 forks source link

podAnnotations don't work #10

Closed juanmancebo closed 3 years ago

juanmancebo commented 3 years ago

Service and pod annotations are not well rendered in pinpoint-web and pinpoint-collector templates.

$ grep test_annotation -B2 values.yaml 
pinpoint-web:
  podAnnotations:
    test_annotation: "test"
--
pinpoint-collector:
  podAnnotations:
    test_annotation: "test"

$ helm template pinpoint .|grep test_annotation -B2
kind: Service
metadata:
  test_annotation: "test"
--
kind: Service
metadata:
  test_annotation: "test"
--
        app.kubernetes.io/version: "2.1.0"
      annotations:
      test_annotation: "test"
--
        app.kubernetes.io/version: "2.1.0"
      annotations:
      test_annotation: "test"