Skip to content

fix: add deprecated warnings to kind and api fields #5938

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions api/types/kustomization.go
Original file line number Diff line number Diff line change
Expand Up @@ -191,6 +191,7 @@ const (
deprecatedPatchesStrategicMergeMessage = "# Warning: 'patchesStrategicMerge' is deprecated. Please use 'patches' instead." + " " + deprecatedWarningToRunEditFix
deprecatedVarsMessage = "# Warning: 'vars' is deprecated. Please use 'replacements' instead." + " " + deprecatedWarningToRunEditFixExperimential
deprecatedCommonLabelsWarningMessage = "# Warning: 'commonLabels' is deprecated. Please use 'labels' instead." + " " + deprecatedWarningToRunEditFix
deprecationWarningAPIVersionandKind = "# Warning: 'apiVersion' and 'kind' fields are required in future releases. Please set it explicitly."
)

// CheckDeprecatedFields check deprecated field is used or not.
Expand All @@ -214,6 +215,9 @@ func (k *Kustomization) CheckDeprecatedFields() *[]string {
if k.Vars != nil {
warningMessages = append(warningMessages, deprecatedVarsMessage)
}
if k.APIVersion != "" && k.Kind != "" {
warningMessages = append(warningMessages, deprecationWarningAPIVersionandKind)
}
return &warningMessages
}

Expand Down
Loading