github.com/replicatedhq/ship@v0.55.0/integration/init/jaeger/expected/base/Deployment-jaeger-query.yaml (about)

     1  apiVersion: extensions/v1beta1
     2  kind: Deployment
     3  metadata:
     4    labels:
     5      app: jaeger
     6      jaeger-infra: query-deployment
     7    name: jaeger-query
     8  spec:
     9    replicas: 1
    10    strategy:
    11      type: Recreate
    12    template:
    13      metadata:
    14        annotations:
    15          prometheus.io/port: "16686"
    16          prometheus.io/scrape: "true"
    17        labels:
    18          app: jaeger
    19          jaeger-infra: query-pod
    20      spec:
    21        containers:
    22        - args:
    23          - --config-file=/conf/query.yaml
    24          env:
    25          - name: SPAN_STORAGE_TYPE
    26            valueFrom:
    27              configMapKeyRef:
    28                key: span-storage-type
    29                name: jaeger-configuration
    30          image: jaegertracing/jaeger-query:1.6.0
    31          name: jaeger-query
    32          ports:
    33          - containerPort: 16686
    34            protocol: TCP
    35          readinessProbe:
    36            httpGet:
    37              path: /
    38              port: 16687
    39          volumeMounts:
    40          - mountPath: /conf
    41            name: jaeger-configuration-volume
    42        volumes:
    43        - configMap:
    44            items:
    45            - key: query
    46              path: query.yaml
    47            name: jaeger-configuration
    48          name: jaeger-configuration-volume