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

io.quarkus.kubernetes.client.deployment.KubernetesClientBuildStep Maven / Gradle / Ivy

Go to download

This module only exists as a separate module to so the kubernetes extension can share code with the kubernetes-client extension

There is a newer version: 1.13.7.Final
Show newest version
package io.quarkus.kubernetes.client.deployment;

import static io.quarkus.kubernetes.client.runtime.KubernetesClientUtils.*;

import io.quarkus.deployment.annotations.BuildStep;
import io.quarkus.kubernetes.client.runtime.KubernetesClientBuildConfig;
import io.quarkus.kubernetes.client.spi.KubernetesClientBuildItem;
import io.quarkus.runtime.TlsConfig;

public class KubernetesClientBuildStep {

    private KubernetesClientBuildConfig buildConfig;

    @BuildStep
    public KubernetesClientBuildItem process(TlsConfig tlsConfig) {
        return new KubernetesClientBuildItem(createClient(buildConfig, tlsConfig));
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy