Adding APIService to the sort order

This ensures that APIService resources are installed last and
uninstalled first
reviewable/pr2557/r13
Aaron Schlesinger 8 years ago committed by Justin Scott
parent 72bb046cc2
commit 663dfed568

@ -49,12 +49,14 @@ var InstallOrder SortOrder = []string{
"Job",
"CronJob",
"Ingress",
"APIService",
}
// 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.
var UninstallOrder SortOrder = []string{
"APIService",
"Ingress",
"Service",
"CronJob",

Loading…
Cancel
Save