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

io.quarkiverse.helm.deployment.ValuesSchemaConfig Maven / Gradle / Ivy

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

import java.util.Map;

import io.smallrye.config.WithDefault;

public interface ValuesSchemaConfig {
    /**
     * Title of the values schema json file.
     */
    @WithDefault("Values")
    String title();

    /**
     * List of properties to add/modify from the values configuration.
     */
    Map properties();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy