|
| 1 | +--- |
| 2 | +# Source: opentelemetry-ebpf/templates/k8s-collector-deployment.yaml |
| 3 | +# The k8s-collector consists of two services: |
| 4 | +# 1) k8s-watcher: talks to the Kubernetes API server to determine the current state of |
| 5 | +# the cluster; sets up watches to be notified of subsequent changes to pods, services |
| 6 | +# and other resources. |
| 7 | +# 2) k8s-relay: relays the information collected by k8s-watcher to the reducer. |
| 8 | +apiVersion: apps/v1 |
| 9 | +kind: Deployment |
| 10 | +metadata: |
| 11 | + name: example-opentelemetry-ebpf-k8s-collector |
| 12 | + labels: |
| 13 | + helm.sh/chart: opentelemetry-ebpf-0.1.0 |
| 14 | + app.kubernetes.io/name: opentelemetry-ebpf |
| 15 | + app.kubernetes.io/instance: example |
| 16 | + app.kubernetes.io/version: "v0.10.0" |
| 17 | + app.kubernetes.io/managed-by: Helm |
| 18 | +spec: |
| 19 | + progressDeadlineSeconds: 600 |
| 20 | + replicas: 1 |
| 21 | + revisionHistoryLimit: 3 |
| 22 | + selector: |
| 23 | + matchLabels: |
| 24 | + app.kubernetes.io/name: example-opentelemetry-ebpf-k8s-collector |
| 25 | + app.kubernetes.io/instance: example |
| 26 | + strategy: |
| 27 | + type: RollingUpdate |
| 28 | + template: |
| 29 | + metadata: |
| 30 | + annotations: |
| 31 | + # This is here to allow us to do "zero-downtime" updates without an image change. |
| 32 | + rollingUpdateVersion: "1" |
| 33 | + charts.flowmill.com/version: 0.1.0 |
| 34 | + labels: |
| 35 | + app.kubernetes.io/name: example-opentelemetry-ebpf-k8s-collector |
| 36 | + app.kubernetes.io/instance: example |
| 37 | + spec: |
| 38 | + containers: |
| 39 | + - name: k8s-watcher |
| 40 | + image: "otel/opentelemetry-ebpf-k8s-watcher:v0.10.0" |
| 41 | + imagePullPolicy: IfNotPresent |
| 42 | + args: |
| 43 | + - --log-console |
| 44 | + - --log-level=warning |
| 45 | + # k8s-relay, which is a service that the k8s-watcher talks to. |
| 46 | + # Currently not configurable, has to be reachable on localhost:8172, so must |
| 47 | + # share a pod with the k8s-watcher above. |
| 48 | + - name: k8s-relay |
| 49 | + image: "otel/opentelemetry-ebpf-k8s-relay:v0.10.0" |
| 50 | + imagePullPolicy: IfNotPresent |
| 51 | + args: |
| 52 | + - --config-file=/etc/network-explorer/config.yaml |
| 53 | + - --warning |
| 54 | + env: |
| 55 | + - name: "EBPF_NET_CLUSTER_NAME" |
| 56 | + value: "" |
| 57 | + - name: "EBPF_NET_INTAKE_HOST" |
| 58 | + value: example-opentelemetry-ebpf-reducer |
| 59 | + - name: "EBPF_NET_INTAKE_PORT" |
| 60 | + value: "7000" |
| 61 | + volumeMounts: |
| 62 | + - mountPath: /etc/network-explorer |
| 63 | + name: k8s-relay-config |
| 64 | + terminationGracePeriodSeconds: 30 |
| 65 | + volumes: |
| 66 | + - name: k8s-relay-config |
| 67 | + projected: |
| 68 | + sources: |
| 69 | + - configMap: |
| 70 | + name: example-opentelemetry-ebpf-config |
| 71 | + items: |
| 72 | + - key: config.yaml |
| 73 | + path: config.yaml |
| 74 | + securityContext: {} |
| 75 | + serviceAccountName: example-opentelemetry-ebpf-k8s-collector |
0 commit comments