From 202cc3cb7e7e0d0f2eea758086406efebfdfa873 Mon Sep 17 00:00:00 2001 From: Vishal Date: Thu, 31 May 2018 23:42:23 +0530 Subject: [PATCH] Changing the logger daemonset's update strategy (#714) Changing the logger daemonset's update strategy from OnDelete to RollingUpdate (Ref: https://kubernetes.io/docs/tasks/manage-daemon/update-daemon-set/#daemonset-update-strategy) --- charts/fission-all/templates/deployment.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/charts/fission-all/templates/deployment.yaml b/charts/fission-all/templates/deployment.yaml index f1d57f42..4f44b4e9 100644 --- a/charts/fission-all/templates/deployment.yaml +++ b/charts/fission-all/templates/deployment.yaml @@ -458,7 +458,8 @@ spec: - name: fission-log hostPath: path: /var/log/fission - + updateStrategy: + type: RollingUpdate --- apiVersion: extensions/v1beta1 kind: Deployment