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

io.fabric8.maven.CleanMojo Maven / Gradle / Ivy

There is a newer version: 3.2.13
Show newest version
/*
 * Copyright 2005-2014 Red Hat, Inc.
 *
 * Red Hat 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 io.fabric8.maven;

import io.fabric8.kubernetes.client.KubernetesClient;
import io.fabric8.kubernetes.client.KubernetesClientException;
import io.fabric8.kubernetes.client.dsl.Deletable;
import io.fabric8.openshift.client.OpenShiftClient;
import org.apache.maven.plugin.MojoExecutionException;
import org.apache.maven.plugin.MojoFailureException;
import org.apache.maven.plugins.annotations.Mojo;
import org.apache.maven.plugins.annotations.Parameter;
import org.apache.maven.plugins.annotations.ResolutionScope;

/**
 * Cleans up namespace resources.
 * The default behavior is to clean app specific resources, replication controllers, pods, services, routes etc.
 * The command also supports deep cleaning. When enabled deep cleaning will delete everything including secrets, service accounts etc.
 */
@Mojo(name = "clean", requiresDependencyResolution = ResolutionScope.RUNTIME)
public class CleanMojo extends ApplyMojo {

    @Parameter(property = "fabric8.deep.clean", defaultValue = "false")
    private Boolean deep;

    @Override
    public void execute() throws MojoExecutionException, MojoFailureException {
        KubernetesClient client = getKubernetes();

        delete(client.services());
        delete(client.replicationControllers());
        delete(client.pods());

        delete(client.endpoints());
        delete(client.events());

        if (deep) {
            delete(client.secrets());
            delete(client.serviceAccounts());
            delete(client.securityContextConstraints());
        }

        if (client.isAdaptable(OpenShiftClient.class)) {
            OpenShiftClient openShiftClient = client.adapt(OpenShiftClient.class);

            delete(openShiftClient.routes());
            delete(openShiftClient.builds());
            delete(openShiftClient.imageStreams());
            delete(openShiftClient.buildConfigs());
            delete(openShiftClient.deploymentConfigs());
            if (deep) {
                delete(openShiftClient.templates());
            }
        }
    }

    public Boolean delete(Deletable deletable) {
        try {
            return deletable.delete();
        } catch (KubernetesClientException e) {
            getLog().error(e.getMessage());
            return false;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy