Skip to content

Commit

Permalink
Update alaz version to v0.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
fatihbaltaci committed Feb 3, 2024
1 parent ec91cbd commit 7b5e6da
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 5 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,8 @@ The following table lists the configurable parameters of the Alaz chart and thei
| `containerPort` | Container port for debugging and profiling Alaz | int | `8181` |
| `podAnnotations` | Annotations to add to the pod | object | `{}` |
| `metricsEnabled` | Enable prometheus node exporter metrics (cpu, memory, network, disk, etc.) | bool | `true` |
| `eBPFEnabled` | Enable eBPF for K8s network data to create a service map | bool | `true` |
| `serviceMapEnabled` | Enable service map for K8s network traffic using eBPF | bool | `true` |
| `distTracingEnabled` | Enable distributed tracing using eBPF | bool | `true` |

You can override these default values by creating a `values.yaml` file and specifying your own values or using the `--set` flag during installation.

Expand Down
5 changes: 4 additions & 1 deletion charts/alaz/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,17 @@ description: Alaz is an open-source Ddosify eBPF agent that can inspect and coll
# a dependency of application charts to inject those utilities and functions into the rendering
# pipeline. Library charts do not define any templates and therefore cannot be deployed.
type: application
icon: https://d2uj9largygsoq.cloudfront.net/docker/ddosify-square-icon-db.svg

# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.5.0
version: 0.5.1

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: "v0.5.0"

kubeVersion: ">=1.16.0-0"
6 changes: 4 additions & 2 deletions charts/alaz/templates/daemonset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,10 @@ spec:
- env:
- name: METRICS_ENABLED
value: "{{ .Values.metricsEnabled }}"
- name: EBPF_ENABLED
value: "{{ .Values.eBPFEnabled }}"
- name: SERVICE_MAP_ENABLED
value: "{{ .Values.serviceMapEnabled }}"
- name: DIST_TRACING_ENABLED
value: "{{ .Values.distTracingEnabled }}"
- name: BACKEND_HOST
value: {{ .Values.backendHost }}
- name: LOG_LEVEL
Expand Down
5 changes: 4 additions & 1 deletion charts/alaz/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,7 @@ podAnnotations: {}
metricsEnabled: true

# enable eBPF for k8s network data to create a service map
eBPFEnabled: true
serviceMapEnabled: true

# enable distributed tracing using eBPF
distTracingEnabled: true

0 comments on commit 7b5e6da

Please sign in to comment.