changes order of operations

Signed-off-by: Mike Delucchi <git@zanuka.com>
pull/30701/head
Mike Delucchi 6 months ago
parent 9b636902c6
commit c121b6b83e

@ -64,18 +64,18 @@ var InstallOrder KindSortOrder = []string{
"CronJob", "CronJob",
"IngressClass", "IngressClass",
"Ingress", "Ingress",
"APIService",
"MutatingWebhookConfiguration", "MutatingWebhookConfiguration",
"ValidatingWebhookConfiguration", "ValidatingWebhookConfiguration",
"APIService",
} }
// UninstallOrder is the order in which manifests should be uninstalled (by Kind). // UninstallOrder is the order in which manifests should be uninstalled (by Kind).
// //
// Those occurring earlier in the list get uninstalled before those occurring later in the list. // Those occurring earlier in the list get uninstalled before those occurring later in the list.
var UninstallOrder KindSortOrder = []string{ var UninstallOrder KindSortOrder = []string{
"APIService",
"ValidatingWebhookConfiguration", "ValidatingWebhookConfiguration",
"MutatingWebhookConfiguration", "MutatingWebhookConfiguration",
"APIService",
"Ingress", "Ingress",
"IngressClass", "IngressClass",
"Service", "Service",

Loading…
Cancel
Save