From 5d7edbe7b44a864c8e4559ff984a0769ba036abc Mon Sep 17 00:00:00 2001 From: Chinasubbareddy Mallavarapu Date: Wed, 20 Mar 2019 17:51:15 -0500 Subject: [PATCH] [ceph-osd] fix name of ceph-osd daemonset during upgrades This is to resolve ds name changes during the site update which triggers all osds to start at a time and deletes old ds which is causing some timesouts on clients. Change-Id: If004e8e46ea34d90d7e05dc41e873c7a64ec046f --- ceph-osd/templates/daemonset-osd.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ceph-osd/templates/daemonset-osd.yaml b/ceph-osd/templates/daemonset-osd.yaml index ab540c8d9..64230e6c5 100644 --- a/ceph-osd/templates/daemonset-osd.yaml +++ b/ceph-osd/templates/daemonset-osd.yaml @@ -355,7 +355,7 @@ spec: {{- end }} {{- if .Values.manifests.daemonset_osd }} -{{- $daemonset := (printf "%s" .Release.Name) }} +{{- $daemonset := "osd" }} {{- $configMapName := (printf "%s-%s" .Release.Name "etc") }} {{- $serviceAccountName := (printf "%s" .Release.Name) }} {{ tuple . "osd" $serviceAccountName | include "helm-toolkit.snippets.kubernetes_pod_rbac_serviceaccount" }}