diff --git a/charts/alaz/Chart.yaml b/charts/alaz/Chart.yaml index 3cfde70..4385445 100644 --- a/charts/alaz/Chart.yaml +++ b/charts/alaz/Chart.yaml @@ -17,7 +17,7 @@ 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 @@ -25,7 +25,7 @@ redhatVersion: 0.5.0 # 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" diff --git a/charts/alaz/README.md b/charts/alaz/README.md index 27f908c..c328a79 100644 --- a/charts/alaz/README.md +++ b/charts/alaz/README.md @@ -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. diff --git a/charts/alaz/templates/daemonset.yaml b/charts/alaz/templates/daemonset.yaml index 1d0d8e4..18274ad 100644 --- a/charts/alaz/templates/daemonset.yaml +++ b/charts/alaz/templates/daemonset.yaml @@ -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: diff --git a/charts/alaz/values.schema.json b/charts/alaz/values.schema.json index 511ede5..24949fa 100644 --- a/charts/alaz/values.schema.json +++ b/charts/alaz/values.schema.json @@ -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", diff --git a/charts/alaz/values.yaml b/charts/alaz/values.yaml index ef06dd2..58c1e00 100644 --- a/charts/alaz/values.yaml +++ b/charts/alaz/values.yaml @@ -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: @@ -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: {}