From f1a1c806735992026dfefbba3d6b1f24e6135894 Mon Sep 17 00:00:00 2001 From: Ashok Pon Kumar Date: Mon, 13 Jul 2020 17:44:53 +0530 Subject: [PATCH] Add "SecurityContextConstraints" to kind_sorter. Fixes #8439 Signed-off-by: Ashok Pon Kumar --- pkg/releaseutil/kind_sorter.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkg/releaseutil/kind_sorter.go b/pkg/releaseutil/kind_sorter.go index a340dfc29..de6c16519 100644 --- a/pkg/releaseutil/kind_sorter.go +++ b/pkg/releaseutil/kind_sorter.go @@ -36,6 +36,7 @@ var InstallOrder KindSortOrder = []string{ "PodSecurityPolicy", "PodDisruptionBudget", "ServiceAccount", + "SecurityContextConstraints", "Secret", "SecretList", "ConfigMap", @@ -97,6 +98,7 @@ var UninstallOrder KindSortOrder = []string{ "SecretList", "Secret", "ServiceAccount", + "SecurityContextConstraints", "PodDisruptionBudget", "PodSecurityPolicy", "LimitRange",