You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
... when changes were made to parent directory as well. This will
prevent building same manifests multiple times as only the manifest of
the parent directory will be built.
help, h Shows a list of commands or help for one command
30
-
30
+
31
31
GLOBAL OPTIONS:
32
32
--out-dir value Directory to output build manifests
33
+
--depth value Minimum directory depth to work with (e.g., 2 means paths will be at least two levels deep like 'aaa/bbb/') (default: 0)
33
34
--truncate-secrets Whether or not to truncate secrets. This can make life easier when you don't have strongbox credentials for some secrets (default: false)
34
35
--help, -h show help
35
36
@@ -47,6 +48,45 @@ in 'manifests.yaml' there. For example, if there is a kustomize directory at
47
48
Will result in the built manifests being placed at
48
49
'build/project-manifests/manifests.yaml'
49
50
51
+
Passing the `--depth` flag will set a minimum directory depth for kustomize
52
+
directories to be processed. If a directory’s depth is less than the specified
53
+
depth value, it will be ignored and no manifests will be built for it.
54
+
55
+
For example, you made changes to the following files:
0 commit comments