Package io.fabric8.kubernetes.api

Examples of io.fabric8.kubernetes.api.Kubernetes.deleteService()


    protected void deleteService(String id) throws Exception {
        LOG.info("stopping service " + id);
        Kubernetes kubernetes = getKubernetes();
        Objects.notNull(kubernetes, "kubernetes");
        kubernetes.deleteService(id);
    }

    @Override
    public void destroy(Container container) {
        assertValid();
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.