blob: 07fb0065e04da57eb220501515b2b2eda1975fc1 [file] [log] [blame]
/*
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You 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 install
import (
"context"
"path"
"strings"
"github.com/apache/camel-k/deploy"
"github.com/apache/camel-k/pkg/apis/camel/v1alpha1"
"github.com/apache/camel-k/pkg/client"
"github.com/apache/camel-k/pkg/util/defaults"
"github.com/apache/camel-k/pkg/util/kubernetes"
"github.com/pkg/errors"
k8serrors "k8s.io/apimachinery/pkg/api/errors"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/runtime"
"k8s.io/apimachinery/pkg/types"
)
const kameletDir = "/kamelets/"
const kameletBundledLabel = "camel.apache.org/kamelet.bundled"
const kameletReadOnlyLabel = "camel.apache.org/kamelet.readonly"
// KameletCatalog installs the bundlet KameletCatalog into one namespace
func KameletCatalog(ctx context.Context, c client.Client, namespace string) error {
if deploy.DirExists(kameletDir) {
for _, res := range deploy.Resources(kameletDir) {
if !strings.HasSuffix(res, ".yaml") && !strings.HasSuffix(res, ".yml") {
continue
}
obj, err := kubernetes.LoadResourceFromYaml(c.GetScheme(), deploy.ResourceAsString(path.Join(kameletDir, res)))
if err != nil {
return err
}
if k, ok := obj.(*v1alpha1.Kamelet); ok {
existing := &v1alpha1.Kamelet{}
err = c.Get(ctx, types.NamespacedName{Namespace: namespace, Name: k.Name}, existing)
if err != nil {
if k8serrors.IsNotFound(err) {
existing = nil
} else {
return err
}
}
if existing == nil || existing.Annotations[kamelVersionAnnotation] != defaults.Version {
err := Resource(ctx, c, namespace, true, func(object runtime.Object) runtime.Object {
if o, ok := object.(metav1.Object); ok {
if o.GetAnnotations() == nil {
o.SetAnnotations(make(map[string]string))
}
o.GetAnnotations()[kamelVersionAnnotation] = defaults.Version
if o.GetLabels() == nil {
o.SetLabels(make(map[string]string))
}
o.GetLabels()[kameletBundledLabel] = "true"
o.GetLabels()[kameletReadOnlyLabel] = "true"
}
return object
}, path.Join(kameletDir, res))
if err != nil {
return errors.Wrapf(err, "could not create resource %q", res)
}
}
}
}
}
return nil
}