Skip to content

Commit 42b55af

Browse files
nicolastakashiTylerHelmuthJaredTan95dmitryax
authored andcommitted
[CHORE] adding eBPF helm chart (open-telemetry#855)
* [CHORE] adding eBPF helm chart Signed-off-by: Nicolas Takashi <nicolas.tcs@hotmail.com> * Update .github/workflows/ebpf-test.yaml Co-authored-by: Tyler Helmuth <12352919+TylerHelmuth@users.noreply.github.com> * Update charts/opentelemetry-ebpf/Chart.yaml Co-authored-by: Tyler Helmuth <12352919+TylerHelmuth@users.noreply.github.com> * Update CONTRIBUTING.md Co-authored-by: Jared Tan <jian.tan@daocloud.io> * Update CONTRIBUTING.md Co-authored-by: Jared Tan <jian.tan@daocloud.io> * Update CONTRIBUTING.md Co-authored-by: Jared Tan <jian.tan@daocloud.io> * Update README.md Co-authored-by: Jared Tan <jian.tan@daocloud.io> * Update README.md Co-authored-by: Jared Tan <jian.tan@daocloud.io> * Update README.md Co-authored-by: Jared Tan <jian.tan@daocloud.io> * Update charts/opentelemetry-ebpf/CONTRIBUTING.md * Update charts/opentelemetry-ebpf/values.yaml * Update charts/opentelemetry-ebpf/values.yaml Co-authored-by: Dmitrii Anoshin <anoshindx@gmail.com> --------- Signed-off-by: Nicolas Takashi <nicolas.tcs@hotmail.com> Co-authored-by: Tyler Helmuth <12352919+TylerHelmuth@users.noreply.github.com> Co-authored-by: Jared Tan <jian.tan@daocloud.io> Co-authored-by: Dmitrii Anoshin <anoshindx@gmail.com>
1 parent 7e1b507 commit 42b55af

36 files changed

+1901
-1
lines changed

.github/workflows/ebpf-test.yaml

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
name: Test eBPF Chart
2+
3+
on:
4+
pull_request:
5+
paths:
6+
- "charts/opentelemetry-ebpf/**"
7+
branches:
8+
- main
9+
10+
jobs:
11+
ebpf-test:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- name: Checkout
15+
uses: actions/checkout@v3
16+
with:
17+
fetch-depth: 0
18+
- name: Setup
19+
uses: ./.github/actions/setup
20+
with:
21+
create-kind-cluster: "true"
22+
23+
- name: Run chart-testing (install)
24+
run: ct install --charts charts/opentelemetry-ebpf
25+
26+
- name: Run daemonset and deployment install test
27+
run: |
28+
kubectl apply -f ./charts/opentelemetry-collector/examples/daemonset-and-deployment/rendered
29+
30+
kubectl rollout status deployment example-opentelemetry-collector --timeout=30s
31+
32+
kubectl apply -f ./charts/opentelemetry-ebpf/examples/cloud-collector/rendered
33+
34+
kubectl rollout status daemonset example-opentelemetry-ebpf-kernel-collector --timeout=30s
35+
kubectl rollout status deployment example-opentelemetry-ebpf-cloud-collector --timeout=30s
36+
kubectl rollout status deployment example-opentelemetry-ebpf-k8s-collector --timeout=30s
37+
kubectl rollout status deployment example-opentelemetry-ebpf-reducer --timeout=30s

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
TMP_DIRECTORY = ./tmp
2-
CHARTS ?= opentelemetry-collector opentelemetry-operator opentelemetry-demo
2+
CHARTS ?= opentelemetry-collector opentelemetry-operator opentelemetry-demo opentelemetry-ebpf
33

44
.PHONY: generate-examples
55
generate-examples:

charts/opentelemetry-ebpf/.helmignore

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Patterns to ignore when building packages.
2+
# This supports shell glob matching, relative path matching, and
3+
# negation (prefixed with !). Only one pattern per line.
4+
.DS_Store
5+
# Common VCS dirs
6+
.git/
7+
.gitignore
8+
.bzr/
9+
.bzrignore
10+
.hg/
11+
.hgignore
12+
.svn/
13+
# Common backup files
14+
*.swp
15+
*.bak
16+
*.tmp
17+
*.orig
18+
*~
19+
# Various IDEs
20+
.project
21+
.idea/
22+
*.tmproj
23+
.vscode/
+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# OpenTelemetry eBPF Chart Contributing Guide
2+
3+
All changes to the chart require a bump to the version in `chart.yaml`. See the [Contributing Guide](https://github.com/open-telemetry/opentelemetry-helm-charts/blob/main/CONTRIBUTING.md#versioning) for our versioning requirements.
4+
5+
Once the chart version is bumped, the examples must be regenerated. You can regenerate examples by running `make generate-examples CHARTS=opentelemetry-ebpf`.
6+
7+
## Bumping Default Collector Version
8+
9+
1. Increase the minor version of the chart by one and set the patch version to zero.
10+
2. Update the chart's `appVersion` to match the new collector version. This version will be used as the image tag by default.
11+
3. Review the corresponding release notes in [Opentelemetry eBPF](https://github.com/open-telemetry/opentelemetry-ebpf/releases). If any changes affect the helm charts, adjust the helm chart accordingly.
12+
4. Run `make generate-examples CHARTS=opentelemetry-ebpf`.

charts/opentelemetry-ebpf/Chart.yaml

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
apiVersion: v2
2+
name: opentelemetry-ebpf
3+
version: 0.1.0
4+
description: OpenTelemetry eBPF Helm chart for Kubernetes
5+
type: application
6+
home: https://opentelemetry.io/
7+
sources:
8+
- https://github.com/open-telemetry/opentelemetry-ebpf
9+
maintainers:
10+
- name: dmitryax
11+
- name: TylerHelmuth
12+
- name: nicolastakashi
13+
icon: https://opentelemetry.io/img/logos/opentelemetry-logo-nav.png
14+
appVersion: v0.10.0

charts/opentelemetry-ebpf/README.md

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# OpenTelemetry Collector eBPF Helm Chart
2+
3+
The helm chart installs [OpenTelemetry eBPF](https://github.com/open-telemetry/opentelemetry-ebpf)
4+
in kubernetes cluster.
5+
6+
## Prerequisites
7+
8+
- Kubernetes 1.24+
9+
- Helm 3.9+
10+
11+
## Installing the Chart
12+
13+
Add OpenTelemetry Helm repository:
14+
15+
```console
16+
helm repo add open-telemetry https://open-telemetry.github.io/opentelemetry-helm-charts
17+
```
18+
19+
To install the chart with the release name my-opentelemetry-ebpf, run the following command:
20+
21+
```console
22+
helm install my-opentelemetry-ebpf open-telemetry/opentelemetry-ebpf
23+
```
24+
25+
### Other configuration options
26+
27+
The [values.yaml](./values.yaml) file contains information about all other configuration
28+
options for this chart.
29+
30+
For more examples see [Examples](examples).
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
---
2+
# Source: opentelemetry-ebpf/templates/cloud-collector-deployment.yaml
3+
apiVersion: apps/v1
4+
kind: Deployment
5+
metadata:
6+
name: example-opentelemetry-ebpf-cloud-collector
7+
labels:
8+
helm.sh/chart: opentelemetry-ebpf-0.1.0
9+
app.kubernetes.io/name: opentelemetry-ebpf
10+
app.kubernetes.io/instance: example
11+
app.kubernetes.io/version: "v0.10.0"
12+
app.kubernetes.io/managed-by: Helm
13+
spec:
14+
progressDeadlineSeconds: 600
15+
replicas: 1
16+
revisionHistoryLimit: 3
17+
selector:
18+
matchLabels:
19+
app.kubernetes.io/name: example-opentelemetry-ebpf-cloud-collector
20+
app.kubernetes.io/instance: example
21+
strategy:
22+
type: RollingUpdate
23+
template:
24+
metadata:
25+
labels:
26+
app.kubernetes.io/name: example-opentelemetry-ebpf-cloud-collector
27+
app.kubernetes.io/instance: example
28+
spec:
29+
containers:
30+
- name: cloud-collector
31+
image: "otel/opentelemetry-ebpf-cloud-collector:v0.10.0"
32+
imagePullPolicy: IfNotPresent
33+
args:
34+
- --warning
35+
env:
36+
- name: "EBPF_NET_CLUSTER_NAME"
37+
value: ""
38+
- name: "EBPF_NET_INTAKE_HOST"
39+
value: example-opentelemetry-ebpf-reducer
40+
- name: "EBPF_NET_INTAKE_PORT"
41+
value: "7000"
42+
terminationGracePeriodSeconds: 30
43+
securityContext: {}
44+
serviceAccountName: example-opentelemetry-ebpf-cloud-collector
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
---
2+
# Source: opentelemetry-ebpf/templates/cloud-collector-serviceaccount.yaml
3+
apiVersion: v1
4+
kind: ServiceAccount
5+
metadata:
6+
name: example-opentelemetry-ebpf-cloud-collector
7+
labels:
8+
helm.sh/chart: opentelemetry-ebpf-0.1.0
9+
app.kubernetes.io/name: opentelemetry-ebpf
10+
app.kubernetes.io/instance: example
11+
app.kubernetes.io/version: "v0.10.0"
12+
app.kubernetes.io/managed-by: Helm
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
---
2+
# Source: opentelemetry-ebpf/templates/configmap.yaml
3+
apiVersion: v1
4+
kind: ConfigMap
5+
metadata:
6+
name: example-opentelemetry-ebpf-config
7+
labels:
8+
helm.sh/chart: opentelemetry-ebpf-0.1.0
9+
app.kubernetes.io/name: opentelemetry-ebpf
10+
app.kubernetes.io/instance: example
11+
app.kubernetes.io/version: "v0.10.0"
12+
app.kubernetes.io/managed-by: Helm
13+
data:
14+
config.yaml: |
15+
labels:
16+
environment: ""
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
---
2+
# Source: opentelemetry-ebpf/templates/k8s-collector-clusterrole.yaml
3+
apiVersion: rbac.authorization.k8s.io/v1
4+
kind: ClusterRole
5+
metadata:
6+
name: example-opentelemetry-ebpf-k8s-collector
7+
labels:
8+
helm.sh/chart: opentelemetry-ebpf-0.1.0
9+
app.kubernetes.io/name: opentelemetry-ebpf
10+
app.kubernetes.io/instance: example
11+
app.kubernetes.io/version: "v0.10.0"
12+
app.kubernetes.io/managed-by: Helm
13+
rules:
14+
- apiGroups:
15+
- ""
16+
resources:
17+
- pods
18+
verbs:
19+
- get
20+
- list
21+
- watch
22+
- apiGroups:
23+
- apps
24+
resources:
25+
- replicasets
26+
verbs:
27+
- get
28+
- list
29+
- watch
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
# Source: opentelemetry-ebpf/templates/k8s-collector-clusterrolebinding.yaml
3+
apiVersion: rbac.authorization.k8s.io/v1
4+
kind: ClusterRoleBinding
5+
metadata:
6+
name: example-opentelemetry-ebpf-k8s-collector
7+
labels:
8+
helm.sh/chart: opentelemetry-ebpf-0.1.0
9+
app.kubernetes.io/name: opentelemetry-ebpf
10+
app.kubernetes.io/instance: example
11+
app.kubernetes.io/version: "v0.10.0"
12+
app.kubernetes.io/managed-by: Helm
13+
roleRef:
14+
apiGroup: rbac.authorization.k8s.io
15+
kind: ClusterRole
16+
name: example-opentelemetry-ebpf-k8s-collector
17+
subjects:
18+
- kind: ServiceAccount
19+
name: example-opentelemetry-ebpf-k8s-collector
20+
namespace: default
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
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
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
---
2+
# Source: opentelemetry-ebpf/templates/k8s-collector-serviceaccount.yaml
3+
apiVersion: v1
4+
kind: ServiceAccount
5+
metadata:
6+
name: example-opentelemetry-ebpf-k8s-collector
7+
labels:
8+
helm.sh/chart: opentelemetry-ebpf-0.1.0
9+
app.kubernetes.io/name: opentelemetry-ebpf
10+
app.kubernetes.io/instance: example
11+
app.kubernetes.io/version: "v0.10.0"
12+
app.kubernetes.io/managed-by: Helm
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
---
2+
# Source: opentelemetry-ebpf/templates/kernel-collector-clusterrole.yaml
3+
apiVersion: rbac.authorization.k8s.io/v1
4+
kind: ClusterRole
5+
metadata:
6+
name: example-opentelemetry-ebpf-kernel-collector
7+
labels:
8+
helm.sh/chart: opentelemetry-ebpf-0.1.0
9+
app.kubernetes.io/name: opentelemetry-ebpf
10+
app.kubernetes.io/instance: example
11+
app.kubernetes.io/version: "v0.10.0"
12+
app.kubernetes.io/managed-by: Helm
13+
rules:
14+
- apiGroups:
15+
- policy
16+
resourceNames:
17+
- example-opentelemetry-ebpf-kernel-collector
18+
resources:
19+
- podsecuritypolicies
20+
verbs:
21+
- use
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
# Source: opentelemetry-ebpf/templates/kernel-collector-clusterrolebinding.yaml
3+
apiVersion: rbac.authorization.k8s.io/v1
4+
kind: ClusterRoleBinding
5+
metadata:
6+
name: example-opentelemetry-ebpf-kernel-collector
7+
labels:
8+
helm.sh/chart: opentelemetry-ebpf-0.1.0
9+
app.kubernetes.io/name: opentelemetry-ebpf
10+
app.kubernetes.io/instance: example
11+
app.kubernetes.io/version: "v0.10.0"
12+
app.kubernetes.io/managed-by: Helm
13+
roleRef:
14+
apiGroup: rbac.authorization.k8s.io
15+
kind: ClusterRole
16+
name: example-opentelemetry-ebpf-kernel-collector
17+
subjects:
18+
- kind: ServiceAccount
19+
name: example-opentelemetry-ebpf-kernel-collector
20+
namespace: default

0 commit comments

Comments
 (0)