io.quarkiverse.helm.deployment.MaintainerConfig Maven / Gradle / Ivy
package io.quarkiverse.helm.deployment;
import java.util.Optional;
public interface MaintainerConfig {
/**
* Name of the maintainer.
*/
Optional name();
/**
* Email of the maintainer.
*/
Optional email();
/**
* URL profile of the maintainer.
*/
Optional url();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy