All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.microcks.operator.base.MicrocksDependentResourcesManager Maven / Gradle / Ivy

The newest version!
/*
 * Copyright The Microcks 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 io.github.microcks.operator.base;

import io.github.microcks.operator.api.base.v1alpha1.Microcks;
import io.github.microcks.operator.base.resources.MicrocksDeploymentDependentResource;
import io.github.microcks.operator.base.resources.MicrocksGRPCIngressDependentResource;
import io.github.microcks.operator.base.resources.MicrocksGRPCSecretDependentResource;
import io.github.microcks.operator.base.resources.MicrocksGRPCSecretInstallPrecondition;
import io.github.microcks.operator.base.resources.MicrocksGRPCServiceDependentResource;
import io.github.microcks.operator.base.resources.MicrocksReadyCondition;
import io.github.microcks.operator.base.resources.MicrocksServiceDependentResource;
import io.github.microcks.operator.base.resources.MicrocksConfigMapDependentResource;
import io.github.microcks.operator.model.NamedSecondaryResourceProvider;

import io.fabric8.kubernetes.api.model.ConfigMap;
import io.fabric8.kubernetes.api.model.Secret;
import io.fabric8.kubernetes.api.model.Service;
import io.fabric8.kubernetes.api.model.apps.Deployment;
import io.fabric8.kubernetes.api.model.networking.v1.Ingress;
import io.fabric8.kubernetes.client.KubernetesClient;
import io.javaoperatorsdk.operator.api.reconciler.EventSourceContext;
import io.javaoperatorsdk.operator.api.reconciler.ResourceIDMatcherDiscriminator;
import io.javaoperatorsdk.operator.processing.dependent.kubernetes.KubernetesDependentResource;
import io.javaoperatorsdk.operator.processing.dependent.workflow.Workflow;
import io.javaoperatorsdk.operator.processing.dependent.workflow.WorkflowBuilder;
import io.javaoperatorsdk.operator.processing.event.ResourceID;
import io.javaoperatorsdk.operator.processing.event.source.EventSource;

import java.util.Arrays;

/**
 * A manager of Kubernetes secondary resources for Microcks module defined by a {@code MicrocksSpec} custom resource
 * specification. Takes care of initialising a reconciliation workflow as well as event sources for the different
 * dependent resources.
 * @author laurent
 */
public class MicrocksDependentResourcesManager {

   private KubernetesClient client;

   private KubernetesDependentResource grpcSecretDR;
   private KubernetesDependentResource configMapDR;
   private KubernetesDependentResource deploymentDR;
   private KubernetesDependentResource serviceDR;
   private KubernetesDependentResource grpcServiceDR;
   private KubernetesDependentResource grpcIngressDR;

   /**
    * Creates a MicrocksDependentResourcesManager.
    * @param client Kubernetes cluster client
    */
   public MicrocksDependentResourcesManager(KubernetesClient client) {
      this.client = client;
   }

   /**
    * Build and configure a reconciliation Workflow for all Microcks module dependent resources.
    * @return A JOSDK reconciliation workflow.
    */
   public Workflow buildReconcialiationWorkflow() {
      grpcSecretDR = new MicrocksGRPCSecretDependentResource();
      configMapDR = new MicrocksConfigMapDependentResource();
      deploymentDR = new MicrocksDeploymentDependentResource();
      serviceDR = new MicrocksServiceDependentResource();
      grpcServiceDR = new MicrocksGRPCServiceDependentResource();
      grpcIngressDR = new MicrocksGRPCIngressDependentResource();

      // Build the workflow.
      WorkflowBuilder builder = new WorkflowBuilder<>();

      // Configure the dependent resources.
      Arrays.asList(grpcSecretDR, configMapDR, deploymentDR, serviceDR, grpcServiceDR, grpcIngressDR).forEach(dr -> {
         if (dr instanceof NamedSecondaryResourceProvider) {
            dr.setResourceDiscriminator(new ResourceIDMatcherDiscriminator<>(
                  p -> new ResourceID(((NamedSecondaryResourceProvider) dr).getSecondaryResourceName(p),
                        p.getMetadata().getNamespace())));
         }
         builder.addDependentResource(dr);
         // Add an installation condition on grpc secret.
         if (dr == grpcSecretDR) {
            builder.withReconcilePrecondition(new MicrocksGRPCSecretInstallPrecondition());
         }
         // Add a ready condition on deployment.
         if (dr == deploymentDR) {
            builder.withReadyPostcondition(new MicrocksReadyCondition());
         }
      });

      return builder.build();
   }

   /**
    * Initialize event sources for all the Microcks module dependent resources.
    * @param context The event source context for the Microcks primary resource
    * @return An array of configured EventSources.
    */
   public EventSource[] initEventSources(EventSourceContext context) {
      return new EventSource[] {
            grpcSecretDR.initEventSource(context),
            configMapDR.initEventSource(context),
            deploymentDR.initEventSource(context),
            serviceDR.initEventSource(context),
            grpcServiceDR.initEventSource(context),
            grpcIngressDR.initEventSource(context)
      };
   }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy