Skip to content

Commit

Permalink
Update alaz version to v0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fatihbaltaci committed May 1, 2024
1 parent 43fd0fc commit 0f15fef
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 13 deletions.
4 changes: 2 additions & 2 deletions charts/alaz/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@ 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.7.4
version: 0.8.0

redhatVersion: 0.5.0

# 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.7.3"
appVersion: "v0.8.0"

kubeVersion: ">=1.16.0-0"

Expand Down
5 changes: 3 additions & 2 deletions charts/alaz/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,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` |
| `serviceMapEnabled` | Enable service map for K8s network traffic using eBPF | bool | `true` |
| `distTracingEnabled` | Enable distributed tracing using eBPF | bool | `true` |
| `tracingEnabled` | Enable tracing (service map and distributed tracing) using eBPF | bool | `true` |
| `logsEnabled` | Enable logging | bool | `false` |
| `excludedNamespaces` | Namespaces to exclude from monitoring with regex format. For example: `"^anteon.*"` to exclude all namespaces starting with "anteon" | string | `""` |

You can override these default values by creating a `values.yaml` file and specifying your own values or using the `--set` flag during installation.
10 changes: 6 additions & 4 deletions charts/alaz/templates/daemonset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,18 @@ spec:
hostPID: true
containers:
- env:
- name: TRACING_ENABLED
value: "{{ .Values.tracingEnabled }}"
- name: METRICS_ENABLED
value: "{{ .Values.metricsEnabled }}"
- name: SERVICE_MAP_ENABLED
value: "{{ .Values.serviceMapEnabled }}"
- name: DIST_TRACING_ENABLED
value: "{{ .Values.distTracingEnabled }}"
- name: LOGS_ENABLED
value: "{{ .Values.logsEnabled }}"
- name: BACKEND_HOST
value: {{ .Values.backendHost }}
- name: LOG_LEVEL
value: "{{ .Values.logLevel }}"
- name: EXCLUDE_NAMESPACES
value: "{{ .Values.excludedNamespaces }}"
- name: MONITORING_ID
value: {{ .Values.monitoringID }}
- name: NODE_NAME
Expand Down
15 changes: 10 additions & 5 deletions charts/alaz/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,21 @@ resources:
cpu: 500m
memory: 400Mi

image: ddosify/alaz:v0.7.3
image: ddosify/alaz:v0.8.0
imagePullPolicy: IfNotPresent
containerPort: 8181
podAnnotations: {}

# enable prometheus node exporter metrics (cpu, memory, network, disk, etc.)
metricsEnabled: true

# enable eBPF for k8s network data to create a service map
serviceMapEnabled: true
# enable tracing (service map and distributed tracing) using eBPF
tracingEnabled: true

# enable distributed tracing using eBPF
distTracingEnabled: true
# enable logs
logsEnabled: false

# exclude namespaces from tracing, metrics and logs.
# Regex pattern to exclude namespaces.
# Example: "^anteon.*"
excludedNamespaces: ""

0 comments on commit 0f15fef

Please sign in to comment.