* Define client generator to generate all k8s clients * Increase QPS and burst values * Capture client-go metrics * Support for controller runtime metrics Signed-off-by: Sanket Sudake <sanketsudake@gmail.com>
179 lines
6.6 KiB
Go
179 lines
6.6 KiB
Go
/*
|
|
Copyright 2016 The Fission 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 main
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"strings"
|
|
|
|
multierror "github.com/hashicorp/go-multierror"
|
|
"github.com/pkg/errors"
|
|
"go.uber.org/zap"
|
|
v1 "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1"
|
|
apiextensionsclient "k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset"
|
|
k8serrors "k8s.io/apimachinery/pkg/api/errors"
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
"k8s.io/client-go/kubernetes"
|
|
|
|
fv1 "github.com/fission/fission/pkg/apis/core/v1"
|
|
"github.com/fission/fission/pkg/crd"
|
|
"github.com/fission/fission/pkg/generated/clientset/versioned"
|
|
"github.com/fission/fission/pkg/utils"
|
|
)
|
|
|
|
type (
|
|
PreUpgradeTaskClient struct {
|
|
logger *zap.Logger
|
|
fissionClient versioned.Interface
|
|
k8sClient kubernetes.Interface
|
|
apiExtClient apiextensionsclient.Interface
|
|
}
|
|
)
|
|
|
|
const (
|
|
maxRetries = 5
|
|
FunctionCRD = "functions.fission.io"
|
|
MqtCRD = "messagequeuetriggers.fission.io"
|
|
)
|
|
|
|
func makePreUpgradeTaskClient(logger *zap.Logger) (*PreUpgradeTaskClient, error) {
|
|
clientGen := crd.NewClientGenerator()
|
|
fissionClient, err := clientGen.GetFissionClient()
|
|
if err != nil {
|
|
return nil, errors.Wrap(err, "failed to get fission client")
|
|
}
|
|
k8sClient, err := clientGen.GetKubernetesClient()
|
|
if err != nil {
|
|
return nil, errors.Wrap(err, "failed to get kubernetes client")
|
|
}
|
|
apiExtClient, err := clientGen.GetApiExtensionsClient()
|
|
if err != nil {
|
|
return nil, errors.Wrap(err, "failed to get apiextensions client")
|
|
}
|
|
|
|
return &PreUpgradeTaskClient{
|
|
logger: logger.Named("pre_upgrade_task_client"),
|
|
fissionClient: fissionClient,
|
|
k8sClient: k8sClient,
|
|
apiExtClient: apiExtClient,
|
|
}, nil
|
|
}
|
|
|
|
// GetFunctionCRD checks if function CRD is present on the cluster and returns it. It returns nil if not found
|
|
// We can use this to find out if fission had been previously installed on this cluster too.
|
|
func (client *PreUpgradeTaskClient) GetFunctionCRD(ctx context.Context) *v1.CustomResourceDefinition {
|
|
for i := 0; i < maxRetries; i++ {
|
|
crd, err := client.apiExtClient.ApiextensionsV1().CustomResourceDefinitions().Get(ctx, FunctionCRD, metav1.GetOptions{})
|
|
if err != nil && k8serrors.IsNotFound(err) {
|
|
continue
|
|
}
|
|
return crd
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// GetMqtCRD checks if MQT CRD is present on the cluster and returns it. It returns nil if not found
|
|
func (client *PreUpgradeTaskClient) GetMqtCRD(ctx context.Context) *v1.CustomResourceDefinition {
|
|
crd, err := client.apiExtClient.ApiextensionsV1().CustomResourceDefinitions().Get(ctx, MqtCRD, metav1.GetOptions{})
|
|
if err != nil {
|
|
client.logger.Error("Could not find MQT CRD", zap.Error(err))
|
|
return nil
|
|
}
|
|
return crd
|
|
}
|
|
|
|
// LatestSchemaApplied ensures that the end user has applied the latest CRDs generated to the cluster.
|
|
// For future reference: whenever a new field is added, we need to check for that field's existence in this function
|
|
func (client *PreUpgradeTaskClient) LatestSchemaApplied(ctx context.Context) error {
|
|
client.logger.Info("Checking if user has applied the latest CRDs")
|
|
funcCRD := client.GetFunctionCRD(ctx)
|
|
if funcCRD == nil {
|
|
return fmt.Errorf("could not get the Function CRD")
|
|
}
|
|
// Any new field added in Function spec can be checked here provided the substring matches the description in CRD Validation of the field
|
|
if !strings.Contains(funcCRD.Spec.String(), "RequestsPerPod") || !strings.Contains(funcCRD.Spec.String(), "OnceOnly") || !strings.Contains(funcCRD.Spec.String(), "PodSpec") {
|
|
return fmt.Errorf("could not find RequestPerPod/OnceOnly/PodSpec in Function CRD")
|
|
}
|
|
|
|
mqtCRD := client.GetMqtCRD(ctx)
|
|
if mqtCRD == nil {
|
|
return fmt.Errorf("could not get the MQT CRD")
|
|
}
|
|
|
|
// Any new field added in MQT spec can be checked here provided the substring matches the description in CRD Validation of the field
|
|
if !strings.Contains(mqtCRD.Spec.String(), "PodSpec") {
|
|
return fmt.Errorf("could not find PodSpec field in MQT CRD")
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// VerifyFunctionSpecReferences verifies that a function references secrets, configmaps, pkgs in its own namespace and
|
|
// outputs a list of functions that don't adhere to this requirement.
|
|
func (client *PreUpgradeTaskClient) VerifyFunctionSpecReferences(ctx context.Context) {
|
|
client.logger.Info("verifying function spec references for all functions in the cluster")
|
|
|
|
var err error
|
|
var fList *fv1.FunctionList
|
|
errs := &multierror.Error{}
|
|
|
|
for _, namespace := range utils.DefaultNSResolver().FissionResourceNS {
|
|
for i := 0; i < maxRetries; i++ {
|
|
fList, err = client.fissionClient.CoreV1().Functions(namespace).List(ctx, metav1.ListOptions{})
|
|
if err == nil {
|
|
break
|
|
}
|
|
}
|
|
|
|
if err != nil {
|
|
client.logger.Fatal("error listing functions after max retries",
|
|
zap.Error(err),
|
|
zap.Int("max_retries", maxRetries))
|
|
}
|
|
|
|
// check that all secrets, configmaps, packages are in the same namespace
|
|
for _, fn := range fList.Items {
|
|
secrets := fn.Spec.Secrets
|
|
for _, secret := range secrets {
|
|
if secret.Namespace != "" && secret.Namespace != fn.ObjectMeta.Namespace {
|
|
errs = multierror.Append(errs, fmt.Errorf("function : %s.%s cannot reference a secret : %s in namespace : %s", fn.ObjectMeta.Name, fn.ObjectMeta.Namespace, secret.Name, secret.Namespace))
|
|
}
|
|
}
|
|
|
|
configmaps := fn.Spec.ConfigMaps
|
|
for _, configmap := range configmaps {
|
|
if configmap.Namespace != "" && configmap.Namespace != fn.ObjectMeta.Namespace {
|
|
errs = multierror.Append(errs, fmt.Errorf("function : %s.%s cannot reference a configmap : %s in namespace : %s", fn.ObjectMeta.Name, fn.ObjectMeta.Namespace, configmap.Name, configmap.Namespace))
|
|
}
|
|
}
|
|
|
|
if fn.Spec.Package.PackageRef.Namespace != "" && fn.Spec.Package.PackageRef.Namespace != fn.ObjectMeta.Namespace {
|
|
errs = multierror.Append(errs, fmt.Errorf("function : %s.%s cannot reference a package : %s in namespace : %s", fn.ObjectMeta.Name, fn.ObjectMeta.Namespace, fn.Spec.Package.PackageRef.Name, fn.Spec.Package.PackageRef.Namespace))
|
|
}
|
|
}
|
|
}
|
|
|
|
if errs.ErrorOrNil() != nil {
|
|
client.logger.Fatal("installation failed",
|
|
zap.Error(errs),
|
|
zap.String("summary", "a function cannot reference secrets, configmaps and packages outside it's own namespace"))
|
|
}
|
|
|
|
client.logger.Info("function spec references verified")
|
|
}
|