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

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

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

import java.util.function.BooleanSupplier;

import io.quarkiverse.operatorsdk.runtime.BuildTimeOperatorConfiguration;

class HelmGenerationEnabled implements BooleanSupplier {
    private BuildTimeOperatorConfiguration config;

    @Override
    public boolean getAsBoolean() {
        return config.helm().enabled();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy