Skip to content

Commit

Permalink
Update alaz version to v0.11.2
Browse files Browse the repository at this point in the history
  • Loading branch information
fatihbaltaci committed Aug 6, 2024
1 parent 5f663f8 commit 7919ea9
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 3 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.11.1
version: 0.11.2

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.1"
appVersion: "v0.11.2"

kubeVersion: ">=1.16.0-0"

Expand Down
1 change: 1 addition & 0 deletions charts/alaz/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,5 +45,6 @@ The following table lists the configurable parameters of the Alaz chart and thei
| `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 | `""` |
| `sendAliveTCPConnections` | Send undetected protocol connections (unknown connections) | bool | `false` |

You can override these default values by creating a `values.yaml` file and specifying your own values or using the `--set` flag during installation.
2 changes: 2 additions & 0 deletions charts/alaz/templates/daemonset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@ spec:
value: {{ .Values.monitoringID }}
- name: CRI_RUNTIME_ENDPOINT
value: {{ .Values.criRuntimeEndpoint }}
- name: SEND_ALIVE_TCP_CONNECTIONS
value: {{ .Values.sendAliveTCPConnections }}
- name: NODE_NAME
valueFrom:
fieldRef:
Expand Down
5 changes: 5 additions & 0 deletions charts/alaz/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,11 @@
"type": "string",
"description": "Custom CRI runtime endpoint (optional)"
},
"sendAliveTCPConnections": {
"type": "boolean",
"description": "Send undetected protocol connections (unknown connections)",
"default": false
},
"logLevel": {
"type": "integer",
"description": "Zero log level",
Expand Down
3 changes: 2 additions & 1 deletion charts/alaz/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ namespace: anteon
backendHost: https://api-alaz.getanteon.com:443
monitoringID: "" # required
criRuntimeEndpoint: "" # optional, specifies an additional CRI Runtime Endpoint, e.g. rke2 + containerd via k3s: unix:///run/k3s/containerd/containerd.sock
sendAliveTCPConnections: false # Send undetected protocol connections (unknown connections)
logLevel: 1 # zero log levels: -1: trace, 0: debug, 1: info, 2: warn, 3: error, 4: fatal, 5: panic

resources:
Expand All @@ -12,7 +13,7 @@ resources:
cpu: "1"
memory: 400Mi

image: ddosify/alaz:v0.11.1
image: ddosify/alaz:v0.11.2
imagePullPolicy: IfNotPresent
containerPort: 8181
podAnnotations: {}
Expand Down

0 comments on commit 7919ea9

Please sign in to comment.