io.kokuwa.maven.helm.AbstractHelmWithValueOverrideMojo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of helm-maven-plugin Show documentation
Show all versions of helm-maven-plugin Show documentation
A plugin for executing HELM (https://docs.helm.sh).
The newest version!
package io.kokuwa.maven.helm;
import java.util.Map;
import java.util.stream.Collectors;
import org.apache.maven.plugin.MojoExecutionException;
import org.apache.maven.plugins.annotations.Parameter;
import io.kokuwa.maven.helm.pojo.HelmExecutable;
import io.kokuwa.maven.helm.pojo.ValueOverride;
import lombok.Setter;
@Setter
public abstract class AbstractHelmWithValueOverrideMojo extends AbstractHelmMojo {
/**
* Additional values to set.
*
* @since 5.6
*/
@Parameter
private ValueOverride values;
@Override
protected HelmExecutable helm() throws MojoExecutionException {
HelmExecutable command = super.helm();
if (values != null) {
if (isNotEmpty(values.getOverrides())) {
command.flag("set", values.getOverrides()
.entrySet().stream().map(e -> e.getKey() + "=" + e.getValue())
.collect(Collectors.joining(",")));
}
if (isNotEmpty(values.getStringOverrides())) {
command.flag("set-string", values.getStringOverrides()
.entrySet().stream().map(e -> e.getKey() + "=" + e.getValue())
.collect(Collectors.joining(",")));
}
if (isNotEmpty(values.getFileOverrides())) {
command.flag("set-file", values.getFileOverrides()
.entrySet().stream().map(e -> e.getKey() + "=" + e.getValue())
.collect(Collectors.joining(",")));
}
if (values.getYamlFile() != null) {
command.flag("values", values.getYamlFile());
}
if (values.getYamlFiles() != null) {
values.getYamlFiles().forEach(yamlFile -> command.flag("values", yamlFile));
}
}
return command;
}
private static boolean isNotEmpty(Map map) {
return map != null && !map.isEmpty();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy