Skip to content

Commit

Permalink
tool(kustomize): use version 5 by default
Browse files Browse the repository at this point in the history
Version 4 is still available over an explicit configuration.
  • Loading branch information
vvagaytsev committed Jun 5, 2024
1 parent 0654b59 commit 9171d70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/plugins/kubernetes/kubernetes-type/kustomize.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export const kustomizeSpecSchema = () =>
.description(
"The directory path where the desired kustomization.yaml is, or a git repository URL. This could be the path to an overlay directory, for example. If it's a path, must be a relative POSIX-style path and must be within the action root. Defaults to the action root. If you set this to null, kustomize will not be run."
),
version: joi.number().integer().valid(4, 5).default(4).description("The Kustomize version to use."),
version: joi.number().integer().valid(4, 5).default(5).description("The Kustomize version to use."),
extraArgs: joiSparseArray(joi.string()).description(
"A list of additional arguments to pass to the `kustomize build` command. Note that specifying '-o' or '--output' is not allowed."
),
Expand Down

0 comments on commit 9171d70

Please sign in to comment.