From c87cf6bb5ef3bbf785c3f64087c118d0f8b8d1c0 Mon Sep 17 00:00:00 2001 From: Majid Burney Date: Tue, 31 Jul 2018 12:16:39 -0700 Subject: [PATCH] [stable/sysdig] Fix readinessProbe (#6919) * [stable/sysdig] Fix readinessProbe `initialDelaysSeconds` was improperty indented beneath `exec`, instead of directly beneath `readinessProbe`. * [stable/sysdig] Version bump * [stable/sysdig] Update changelog --- stable/sysdig/CHANGELOG.md | 6 ++++++ stable/sysdig/Chart.yaml | 2 +- stable/sysdig/templates/daemonset.yaml | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/stable/sysdig/CHANGELOG.md b/stable/sysdig/CHANGELOG.md index a47538972d..b66de834fe 100644 --- a/stable/sysdig/CHANGELOG.md +++ b/stable/sysdig/CHANGELOG.md @@ -3,6 +3,12 @@ This file documents all notable changes to Sysdig Helm Chart. The release numbering uses [semantic versioning](http://semver.org). +## v1.0.2 + +### Minor Changes + +* Fix readinessProbe in daemonset's pod spec + ## v1.0.1 ### Minor Changes diff --git a/stable/sysdig/Chart.yaml b/stable/sysdig/Chart.yaml index a0507e5d2e..802fcb8539 100755 --- a/stable/sysdig/Chart.yaml +++ b/stable/sysdig/Chart.yaml @@ -1,5 +1,5 @@ name: sysdig -version: 1.0.1 +version: 1.0.2 appVersion: 0.81.0 description: Sysdig Monitor and Secure agent keywords: diff --git a/stable/sysdig/templates/daemonset.yaml b/stable/sysdig/templates/daemonset.yaml index 4784c754f9..ad09e1a713 100644 --- a/stable/sysdig/templates/daemonset.yaml +++ b/stable/sysdig/templates/daemonset.yaml @@ -32,7 +32,7 @@ spec: readinessProbe: exec: command: [ "test", "-e", "/opt/draios/logs/draios.log" ] - initialDelaySeconds: 10 + initialDelaySeconds: 10 volumeMounts: - mountPath: /host/var/run/docker.sock name: docker-sock