mirror of https://github.com/helm/helm
feat: implement deprecation warnings in helm lint (#7986)
* feat: implement deprecation warnings in helm lint Signed-off-by: Matt Butcher <matt.butcher@microsoft.com> * added more deprecated APIs Signed-off-by: Matt Butcher <matt.butcher@microsoft.com>pull/8042/head
parent
c0edc586c5
commit
bf9d629dc0
@ -0,0 +1,64 @@
|
|||||||
|
/*
|
||||||
|
Copyright The Helm Authors.
|
||||||
|
|
||||||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
you may not use this file except in compliance with the License.
|
||||||
|
You may obtain a copy of the License at
|
||||||
|
|
||||||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
|
Unless required by applicable law or agreed to in writing, software
|
||||||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
See the License for the specific language governing permissions and
|
||||||
|
limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package rules // import "helm.sh/helm/v3/pkg/lint/rules"
|
||||||
|
|
||||||
|
import "fmt"
|
||||||
|
|
||||||
|
// deprecatedAPIs lists APIs that are deprecated (left) with suggested alternatives (right).
|
||||||
|
//
|
||||||
|
// An empty rvalue indicates that the API is completely deprecated.
|
||||||
|
var deprecatedAPIs = map[string]string{
|
||||||
|
"extensions/v1 Deployment": "apps/v1 Deployment",
|
||||||
|
"extensions/v1 DaemonSet": "apps/v1 DaemonSet",
|
||||||
|
"extensions/v1 ReplicaSet": "apps/v1 ReplicaSet",
|
||||||
|
"extensions/v1beta1 PodSecurityPolicy": "policy/v1beta1 PodSecurityPolicy",
|
||||||
|
"extensions/v1beta1 NetworkPolicy": "networking.k8s.io/v1beta1 NetworkPolicy",
|
||||||
|
"extensions/v1beta1 Ingress": "networking.k8s.io/v1beta1 Ingress",
|
||||||
|
"apps/v1beta1 Deployment": "apps/v1 Deployment",
|
||||||
|
"apps/v1beta1 StatefulSet": "apps/v1 StatefulSet",
|
||||||
|
"apps/v1beta1 DaemonSet": "apps/v1 DaemonSet",
|
||||||
|
"apps/v1beta1 ReplicaSet": "apps/v1 ReplicaSet",
|
||||||
|
"apps/v1beta2 Deployment": "apps/v1 Deployment",
|
||||||
|
"apps/v1beta2 StatefulSet": "apps/v1 StatefulSet",
|
||||||
|
"apps/v1beta2 DaemonSet": "apps/v1 DaemonSet",
|
||||||
|
"apps/v1beta2 ReplicaSet": "apps/v1 ReplicaSet",
|
||||||
|
}
|
||||||
|
|
||||||
|
// deprecatedAPIError indicates than an API is deprecated in Kubernetes
|
||||||
|
type deprecatedAPIError struct {
|
||||||
|
Deprecated string
|
||||||
|
Alternative string
|
||||||
|
}
|
||||||
|
|
||||||
|
func (e deprecatedAPIError) Error() string {
|
||||||
|
msg := fmt.Sprintf("the kind %q is deprecated", e.Deprecated)
|
||||||
|
if e.Alternative != "" {
|
||||||
|
msg += fmt.Sprintf(" in favor of %q", e.Alternative)
|
||||||
|
}
|
||||||
|
return msg
|
||||||
|
}
|
||||||
|
|
||||||
|
func validateNoDeprecations(resource *K8sYamlStruct) error {
|
||||||
|
gvk := fmt.Sprintf("%s %s", resource.APIVersion, resource.Kind)
|
||||||
|
if alt, ok := deprecatedAPIs[gvk]; ok {
|
||||||
|
return deprecatedAPIError{
|
||||||
|
Deprecated: gvk,
|
||||||
|
Alternative: alt,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
@ -0,0 +1,42 @@
|
|||||||
|
/*
|
||||||
|
Copyright The Helm Authors.
|
||||||
|
|
||||||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
you may not use this file except in compliance with the License.
|
||||||
|
You may obtain a copy of the License at
|
||||||
|
|
||||||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
|
Unless required by applicable law or agreed to in writing, software
|
||||||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
See the License for the specific language governing permissions and
|
||||||
|
limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package rules // import "helm.sh/helm/v3/pkg/lint/rules"
|
||||||
|
|
||||||
|
import "testing"
|
||||||
|
|
||||||
|
func TestValidateNoDeprecations(t *testing.T) {
|
||||||
|
deprecated := &K8sYamlStruct{
|
||||||
|
APIVersion: "extensions/v1",
|
||||||
|
Kind: "Deployment",
|
||||||
|
}
|
||||||
|
err := validateNoDeprecations(deprecated)
|
||||||
|
if err == nil {
|
||||||
|
t.Fatal("Expected deprecated extension to be flagged")
|
||||||
|
}
|
||||||
|
|
||||||
|
depErr := err.(deprecatedAPIError)
|
||||||
|
if depErr.Alternative != "apps/v1 Deployment" {
|
||||||
|
t.Errorf("Expected %q to be replaced by %q", depErr.Deprecated, depErr.Alternative)
|
||||||
|
}
|
||||||
|
|
||||||
|
if err := validateNoDeprecations(&K8sYamlStruct{
|
||||||
|
APIVersion: "v1",
|
||||||
|
Kind: "Pod",
|
||||||
|
}); err != nil {
|
||||||
|
t.Errorf("Expected a v1 Pod to not be deprecated")
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in new issue