mirror of https://github.com/helm/helm
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
81 lines
4.3 KiB
81 lines
4.3 KiB
/*
|
|
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/v1beta1 Deployment": "apps/v1 Deployment",
|
|
"extensions/v1beta1 DaemonSet": "apps/v1 DaemonSet",
|
|
"extensions/v1beta1 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 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",
|
|
"apiextensions.k8s.io/v1beta1 CustomResourceDefinition": "apiextensions.k8s.io/v1 CustomResourceDefinition",
|
|
"rbac.authorization.k8s.io/v1alpha1 ClusterRole": "rbac.authorization.k8s.io/v1 ClusterRole",
|
|
"rbac.authorization.k8s.io/v1alpha1 ClusterRoleList": "rbac.authorization.k8s.io/v1 ClusterRoleList",
|
|
"rbac.authorization.k8s.io/v1alpha1 ClusterRoleBinding": "rbac.authorization.k8s.io/v1 ClusterRoleBinding",
|
|
"rbac.authorization.k8s.io/v1alpha1 ClusterRoleBindingList": "rbac.authorization.k8s.io/v1 ClusterRoleBindingList",
|
|
"rbac.authorization.k8s.io/v1alpha1 Role": "rbac.authorization.k8s.io/v1 Role",
|
|
"rbac.authorization.k8s.io/v1alpha1 RoleList": "rbac.authorization.k8s.io/v1 RoleList",
|
|
"rbac.authorization.k8s.io/v1alpha1 RoleBinding": "rbac.authorization.k8s.io/v1 RoleBinding",
|
|
"rbac.authorization.k8s.io/v1alpha1 RoleBindingList": "rbac.authorization.k8s.io/v1 RoleBindingList",
|
|
"rbac.authorization.k8s.io/v1beta1 ClusterRole": "rbac.authorization.k8s.io/v1 ClusterRole",
|
|
"rbac.authorization.k8s.io/v1beta1 ClusterRoleList": "rbac.authorization.k8s.io/v1 ClusterRoleList",
|
|
"rbac.authorization.k8s.io/v1beta1 ClusterRoleBinding": "rbac.authorization.k8s.io/v1 ClusterRoleBinding",
|
|
"rbac.authorization.k8s.io/v1beta1 ClusterRoleBindingList": "rbac.authorization.k8s.io/v1 ClusterRoleBindingList",
|
|
"rbac.authorization.k8s.io/v1beta1 Role": "rbac.authorization.k8s.io/v1 Role",
|
|
"rbac.authorization.k8s.io/v1beta1 RoleList": "rbac.authorization.k8s.io/v1 RoleList",
|
|
"rbac.authorization.k8s.io/v1beta1 RoleBinding": "rbac.authorization.k8s.io/v1 RoleBinding",
|
|
"rbac.authorization.k8s.io/v1beta1 RoleBindingList": "rbac.authorization.k8s.io/v1 RoleBindingList",
|
|
}
|
|
|
|
// 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
|
|
}
|