Skip to content

Commit

Permalink
Update alaz version to v0.11.1
Browse files Browse the repository at this point in the history
  • Loading branch information
fatihbaltaci committed Aug 6, 2024
1 parent be1a625 commit 5f663f8
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 9 deletions.
5 changes: 2 additions & 3 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.11.0
version: 0.11.1

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.11.0"
appVersion: "v0.11.1"

kubeVersion: ">=1.16.0-0"

Expand All @@ -41,6 +41,5 @@ keywords:
- anteon
- alaz
- service map
- distributed tracing
- observability
- monitoring
2 changes: 1 addition & 1 deletion charts/alaz/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ 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` |
| `tracingEnabled` | Enable tracing (service map and distributed tracing) using eBPF | bool | `true` |
| `tracingEnabled` | Enable tracing (Service Map) 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 | `""` |
| `criRuntimeEndpoint` | Custom CRI runtime endpoint (optional) | string | `""` |
Expand Down
2 changes: 1 addition & 1 deletion charts/alaz/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@
},
"tracingEnabled": {
"type": "boolean",
"description": "Enable tracing (service map and distributed tracing) using eBPF",
"description": "Enable tracing (Service Map) using eBPF",
"default": true
},
"logsEnabled": {
Expand Down
8 changes: 4 additions & 4 deletions charts/alaz/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,24 +7,24 @@ logLevel: 1 # zero log levels: -1: trace, 0: debug, 1: info, 2: warn, 3: error

resources:
limits:
cpu: "1"
memory: 1Gi
requests:
cpu: "1"
memory: 400Mi

image: ddosify/alaz:v0.11.0
image: ddosify/alaz:v0.11.1
imagePullPolicy: IfNotPresent
containerPort: 8181
podAnnotations: {}

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

# enable tracing (service map and distributed tracing) using eBPF
# enable tracing (Service Map) using eBPF
tracingEnabled: true

# enable logs
logsEnabled: true
logsEnabled: false

# exclude namespaces from tracing, metrics and logs.
# Regex pattern to exclude namespaces.
Expand Down

0 comments on commit 5f663f8

Please sign in to comment.