We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e68185 commit 2ae976eCopy full SHA for 2ae976e
dev/tools/deploy-to-kube
@@ -68,6 +68,10 @@ def main(args):
68
return
69
70
for root, dirs, files in os.walk(manifests_path):
71
+ # Process files in alphabetical order
72
+ # This works now because k8s/ doesn't contain CRs, and Namespace is defined in the first file (controller.yaml).
73
+ # TODO: Handle file ordering better so that CRDs and Namespaces are deployed first
74
+ files.sort()
75
for filename in files:
76
if not (filename.endswith(".yaml") or filename.endswith(".yml")):
77
continue
0 commit comments