From 885c01785752e311ba185a286907d68d00489257 Mon Sep 17 00:00:00 2001 From: fatihbaltaci Date: Wed, 24 Jul 2024 16:44:23 +0300 Subject: [PATCH] Update alaz version to v0.11.0 --- charts/alaz/Chart.yaml | 4 ++-- charts/alaz/README.md | 1 - charts/alaz/templates/daemonset.yaml | 1 - charts/alaz/values.schema.json | 5 ----- charts/alaz/values.yaml | 3 +-- 5 files changed, 3 insertions(+), 11 deletions(-) diff --git a/charts/alaz/Chart.yaml b/charts/alaz/Chart.yaml index b87d4f1..26cb1c5 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.10.1 +version: 0.11.0 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.10.0" +appVersion: "v0.11.0" kubeVersion: ">=1.16.0-0" diff --git a/charts/alaz/README.md b/charts/alaz/README.md index 0438cc8..aeece9c 100644 --- a/charts/alaz/README.md +++ b/charts/alaz/README.md @@ -35,7 +35,6 @@ The following table lists the configurable parameters of the Alaz chart and thei | `logLevel` | [Zero log](https://github.com/rs/zerolog) level (0: trace, 1: debug, 2: info, 3: warn, 4: error, 5: fatal, 6: panic) | int | `1` | | `resources.limits.cpu` | CPU limit | string | `1` | | `resources.limits.memory` | Memory limit | string | `1Gi` | -| `resources.requests.cpu` | CPU request | string | `500m` | | `resources.requests.memory` | Memory request | string | `400Mi` | | `image` | Alaz Docker image | string | - | | `imagePullPolicy` | Image pull policy | string | `IfNotPresent` | diff --git a/charts/alaz/templates/daemonset.yaml b/charts/alaz/templates/daemonset.yaml index 3f3c4cd..1d0d8e4 100644 --- a/charts/alaz/templates/daemonset.yaml +++ b/charts/alaz/templates/daemonset.yaml @@ -58,7 +58,6 @@ spec: cpu: {{ .Values.resources.limits.cpu }} memory: {{ .Values.resources.limits.memory }} requests: - cpu: {{ .Values.resources.requests.cpu }} memory: {{ .Values.resources.requests.memory }} securityContext: privileged: true diff --git a/charts/alaz/values.schema.json b/charts/alaz/values.schema.json index 740e92f..b0b3215 100644 --- a/charts/alaz/values.schema.json +++ b/charts/alaz/values.schema.json @@ -50,11 +50,6 @@ "requests": { "type": "object", "properties": { - "cpu": { - "type": "string", - "pattern": "^\\d+m?$", - "default": "500m" - }, "memory": { "type": "string", "pattern": "^\\d+(Mi|Gi)$", diff --git a/charts/alaz/values.yaml b/charts/alaz/values.yaml index 3718113..8cbe4b7 100644 --- a/charts/alaz/values.yaml +++ b/charts/alaz/values.yaml @@ -10,10 +10,9 @@ resources: cpu: "1" memory: 1Gi requests: - cpu: 500m memory: 400Mi -image: ddosify/alaz:v0.10.0 +image: ddosify/alaz:v0.11.0 imagePullPolicy: IfNotPresent containerPort: 8181 podAnnotations: {}