mirror of
https://github.com/kubevirt/containerized-data-importer.git
synced 2025-06-03 06:30:22 +00:00

Users don't want 👽 resources in clusters, and we should also be able to tell if were part of a broader installation. Note: - Operator created resources were handled in https://github.com/kubevirt/controller-lifecycle-operator-sdk/pull/18 as these labels will be common to all resources deployed by the HCO. - Now that the controller is guaranteed to have the labels, we can set env vars that reference the label values (fieldRef) to spare calling GET on the CR in the controllers. (thanks mhenriks). Signed-off-by: Alex Kalenyuk <akalenyu@redhat.com>
148 lines
4.0 KiB
Go
148 lines
4.0 KiB
Go
/*
|
|
Copyright 2018 The CDI 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 controller
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
|
|
"github.com/go-logr/logr"
|
|
routev1 "github.com/openshift/api/route/v1"
|
|
corev1 "k8s.io/api/core/v1"
|
|
"k8s.io/apimachinery/pkg/api/errors"
|
|
"k8s.io/apimachinery/pkg/api/meta"
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
"k8s.io/apimachinery/pkg/runtime"
|
|
"sigs.k8s.io/controller-runtime/pkg/client"
|
|
"sigs.k8s.io/controller-runtime/pkg/controller/controllerutil"
|
|
"sigs.k8s.io/controller-runtime/pkg/source"
|
|
|
|
"kubevirt.io/containerized-data-importer/pkg/controller"
|
|
"kubevirt.io/containerized-data-importer/pkg/util"
|
|
)
|
|
|
|
const (
|
|
uploadProxyServiceName = "cdi-uploadproxy"
|
|
uploadProxyRouteName = uploadProxyServiceName
|
|
uploadProxyCABundle = "cdi-uploadproxy-signer-bundle"
|
|
)
|
|
|
|
func ensureUploadProxyRouteExists(logger logr.Logger, c client.Client, scheme *runtime.Scheme, owner metav1.Object) error {
|
|
namespace := owner.GetNamespace()
|
|
if namespace == "" {
|
|
return fmt.Errorf("cluster scoped owner not supported")
|
|
}
|
|
|
|
cm := &corev1.ConfigMap{}
|
|
key := client.ObjectKey{Namespace: namespace, Name: uploadProxyCABundle}
|
|
if err := c.Get(context.TODO(), key, cm); err != nil {
|
|
if errors.IsNotFound(err) {
|
|
logger.V(3).Info("upload proxy ca cert doesn't exist yet")
|
|
return nil
|
|
}
|
|
return err
|
|
}
|
|
|
|
cert, exists := cm.Data["ca-bundle.crt"]
|
|
if !exists {
|
|
return fmt.Errorf("unexpected ConfigMap format, 'ca-bundle.crt' key missing")
|
|
}
|
|
|
|
cr, err := controller.GetActiveCDI(c)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if cr == nil {
|
|
return fmt.Errorf("no active CDI")
|
|
}
|
|
installerLabels := util.GetRecommendedInstallerLabelsFromCr(cr)
|
|
|
|
desiredRoute := &routev1.Route{
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
Name: uploadProxyRouteName,
|
|
Namespace: namespace,
|
|
Labels: map[string]string{
|
|
"cdi.kubevirt.io": "",
|
|
},
|
|
Annotations: map[string]string{
|
|
// long timeout here to make sure client conection doesn't die during qcow->raw conversion
|
|
"haproxy.router.openshift.io/timeout": "60m",
|
|
},
|
|
},
|
|
Spec: routev1.RouteSpec{
|
|
To: routev1.RouteTargetReference{
|
|
Kind: "Service",
|
|
Name: uploadProxyServiceName,
|
|
},
|
|
TLS: &routev1.TLSConfig{
|
|
Termination: routev1.TLSTerminationReencrypt,
|
|
DestinationCACertificate: string(cert),
|
|
},
|
|
},
|
|
}
|
|
util.SetRecommendedLabels(desiredRoute, installerLabels, "cdi-operator")
|
|
|
|
currentRoute := &routev1.Route{}
|
|
key = client.ObjectKey{Namespace: namespace, Name: uploadProxyRouteName}
|
|
err = c.Get(context.TODO(), key, currentRoute)
|
|
if err == nil {
|
|
if currentRoute.Spec.To.Kind != desiredRoute.Spec.To.Kind ||
|
|
currentRoute.Spec.To.Name != desiredRoute.Spec.To.Name ||
|
|
currentRoute.Spec.TLS == nil ||
|
|
currentRoute.Spec.TLS.Termination != desiredRoute.Spec.TLS.Termination ||
|
|
currentRoute.Spec.TLS.DestinationCACertificate != desiredRoute.Spec.TLS.DestinationCACertificate {
|
|
currentRoute.Spec = desiredRoute.Spec
|
|
return c.Update(context.TODO(), currentRoute)
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
if meta.IsNoMatchError(err) {
|
|
// not in openshift
|
|
logger.V(3).Info("No match error for Route, must not be in openshift")
|
|
return nil
|
|
}
|
|
|
|
if !errors.IsNotFound(err) {
|
|
return err
|
|
}
|
|
|
|
if err = controllerutil.SetControllerReference(owner, desiredRoute, scheme); err != nil {
|
|
return err
|
|
}
|
|
|
|
return c.Create(context.TODO(), desiredRoute)
|
|
}
|
|
|
|
func (r *ReconcileCDI) watchRoutes() error {
|
|
err := r.controller.Watch(
|
|
&source.Kind{Type: &routev1.Route{}},
|
|
enqueueCDI(r.client),
|
|
)
|
|
if err != nil {
|
|
if meta.IsNoMatchError(err) {
|
|
log.Info("Not watching Routes")
|
|
return nil
|
|
}
|
|
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|