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

io.quarkiverse.operatorsdk.deployment.helm.HelmChartDisabledLogger Maven / Gradle / Ivy

There is a newer version: 6.8.4
Show newest version
package io.quarkiverse.operatorsdk.deployment.helm;

import org.jboss.logging.Logger;

import io.quarkus.deployment.annotations.BuildStep;
import io.quarkus.deployment.annotations.Produce;
import io.quarkus.deployment.pkg.builditem.ArtifactResultBuildItem;

// Note that steps of this processor won't be run in dev mode because ArtifactResultBuildItems are only considered in NORMAL mode
public class HelmChartDisabledLogger {
    private static final Logger log = Logger.getLogger(HelmChartDisabledLogger.class);

    @BuildStep(onlyIfNot = HelmGenerationEnabled.class)
    @Produce(ArtifactResultBuildItem.class)
    void outputHelmGenerationDisabled() {
        log.debug("Generating Helm chart is disabled");
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy