From 074bd2a646e96d5f895e72ad76becda956925128 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?N=C3=A9stor=20Salceda?= Date: Fri, 23 Aug 2019 15:41:17 +0200 Subject: [PATCH] [stable/sysdig] Upgrade to latest agent version - 0.92.1 (#16549) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The requests and limits have been also updated to match values provided by Sysdig Signed-off-by: Néstor Salceda --- stable/sysdig/CHANGELOG.md | 8 ++++++++ stable/sysdig/Chart.yaml | 4 ++-- stable/sysdig/README.md | 8 ++++---- stable/sysdig/values.yaml | 8 ++++---- 4 files changed, 18 insertions(+), 10 deletions(-) diff --git a/stable/sysdig/CHANGELOG.md b/stable/sysdig/CHANGELOG.md index fde43e6a05..9a059d2f45 100644 --- a/stable/sysdig/CHANGELOG.md +++ b/stable/sysdig/CHANGELOG.md @@ -3,6 +3,14 @@ This file documents all notable changes to Sysdig Helm Chart. The release numbering uses [semantic versioning](http://semver.org). +## v1.4.13 + +### Minor changes + +* Use the latest image from Agent (0.92.1) by default. +* Increase `resources.requests` and `resources.limits` to match the [values + provided by Sysdig's agent team.](https://github.com/draios/sysdig-cloud-scripts/blob/master/agent_deploy/kubernetes/sysdig-agent-daemonset-v2.yaml#L70) + ## v1.4.12 ### Minor changes diff --git a/stable/sysdig/Chart.yaml b/stable/sysdig/Chart.yaml index ed6da867de..899cd55f54 100755 --- a/stable/sysdig/Chart.yaml +++ b/stable/sysdig/Chart.yaml @@ -1,7 +1,7 @@ apiVersion: v1 name: sysdig -version: 1.4.12 -appVersion: 0.92.0 +version: 1.4.13 +appVersion: 0.92.1 description: Sysdig Monitor and Secure agent keywords: - monitoring diff --git a/stable/sysdig/README.md b/stable/sysdig/README.md index 7398c569b1..5110b200df 100644 --- a/stable/sysdig/README.md +++ b/stable/sysdig/README.md @@ -41,13 +41,13 @@ The following table lists the configurable parameters of the Sysdig chart and th | --- | --- | --- | | `image.registry` | Sysdig agent image registry | `docker.io` | | `image.repository` | The image repository to pull from | `sysdig/agent` | -| `image.tag` | The image tag to pull | `0.92.0` | +| `image.tag` | The image tag to pull | `0.92.1` | | `image.pullPolicy` | The Image pull policy | `IfNotPresent` | | `image.pullSecrets` | Image pull secrets | `nil` | -| `resources.requests.cpu` | CPU requested for being run in a node | `100m` | +| `resources.requests.cpu` | CPU requested for being run in a node | `600m` | | `resources.requests.memory` | Memory requested for being run in a node | `512Mi` | -| `resources.limits.cpu` | CPU limit | `200m` | -| `resources.limits.memory` | Memory limit | `1024Mi` | +| `resources.limits.cpu` | CPU limit | `2000m` | +| `resources.limits.memory` | Memory limit | `1536Mi` | | `rbac.create` | If true, create & use RBAC resources | `true` | | `serviceAccount.create` | Create serviceAccount | `true` | | `serviceAccount.name` | Use this value as serviceAccountName | ` ` | diff --git a/stable/sysdig/values.yaml b/stable/sysdig/values.yaml index b606bf10ed..e3f0f67993 100644 --- a/stable/sysdig/values.yaml +++ b/stable/sysdig/values.yaml @@ -3,7 +3,7 @@ image: registry: docker.io repository: sysdig/agent - tag: 0.92.0 + tag: 0.92.1 # Specify a imagePullPolicy # Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent' # ref: http://kubernetes.io/docs/user-guide/images/#pre-pulling-images @@ -20,11 +20,11 @@ resources: # a sane defaults ones. If you have more questions or concerns, please refer # to Sysdig Support for more info about it requests: - cpu: 100m + cpu: 600m memory: 512Mi limits: - cpu: 200m - memory: 1024Mi + cpu: 2000m + memory: 1536Mi rbac: # true here enables creation of rbac resources