io.quarkiverse.helm.deployment.ValuesSchemaConfig Maven / Gradle / Ivy
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