io.kokuwa.maven.helm.pojo.K8SCluster 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.pojo;
import io.kokuwa.maven.helm.AbstractHelmMojo;
import lombok.Data;
import lombok.ToString;
/**
* POJO for K8S cluster configuration
*
* @author Kirill Nazarov
* @since 5.10
* @deprecated Duplicate with flags in {@link AbstractHelmMojo}. Will be removed in 7.x
*/
@Deprecated // java8 (since = "6.3.0", forRemoval = true)
@Data
public class K8SCluster {
private String apiUrl;
private String namespace;
private String asUser;
private String asGroup;
@ToString.Exclude
private String token;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy