io.strimzi.api.kafka.model.KafkaClusterSpec Maven / Gradle / Ivy
/*
* Copyright Strimzi authors.
* License: Apache License 2.0 (see the file LICENSE or http://apache.org/licenses/LICENSE-2.0.html).
*/
package io.strimzi.api.kafka.model;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import io.fabric8.kubernetes.api.model.Affinity;
import io.fabric8.kubernetes.api.model.ResourceRequirements;
import io.fabric8.kubernetes.api.model.Toleration;
import io.strimzi.api.annotations.DeprecatedProperty;
import io.strimzi.api.kafka.model.listener.arraylistener.ArrayOrObjectKafkaListeners;
import io.strimzi.api.kafka.model.storage.Storage;
import io.strimzi.api.kafka.model.template.KafkaClusterTemplate;
import io.strimzi.crdgenerator.annotations.Description;
import io.strimzi.crdgenerator.annotations.DescriptionFile;
import io.strimzi.crdgenerator.annotations.KubeLink;
import io.strimzi.crdgenerator.annotations.Minimum;
import io.strimzi.crdgenerator.annotations.PresentInVersions;
import io.sundr.builder.annotations.Buildable;
import lombok.EqualsAndHashCode;
import java.io.Serializable;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
/**
* Representation of a Strimzi-managed Kafka "cluster".
*/
@DescriptionFile
@Buildable(
editableEnabled = false,
builderPackage = Constants.FABRIC8_KUBERNETES_API
)
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonPropertyOrder({
"replicas", "image", "storage",
"listeners", "authorization", "config",
"rack", "brokerRackInitImage",
"affinity", "tolerations",
"livenessProbe", "readinessProbe",
"jvmOptions", "jmxOptions", "resources",
"metrics", "logging", "tlsSidecar", "template"})
@EqualsAndHashCode
public class KafkaClusterSpec implements UnknownPropertyPreserving, Serializable {
private static final long serialVersionUID = 1L;
public static final String FORBIDDEN_PREFIXES = "listeners, advertised., broker., listener., host.name, port, "
+ "inter.broker.listener.name, sasl., ssl., security., password., principal.builder.class, log.dir, "
+ "zookeeper.connect, zookeeper.set.acl, zookeeper.ssl, zookeeper.clientCnxnSocket, authorizer., super.user, "
+ "cruise.control.metrics.topic, cruise.control.metrics.reporter.bootstrap.servers";
public static final String FORBIDDEN_PREFIX_EXCEPTIONS = "zookeeper.connection.timeout.ms, ssl.cipher.suites, ssl.protocol, ssl.enabled.protocols,"
+ "cruise.control.metrics.topic.num.partitions, cruise.control.metrics.topic.replication.factor, cruise.control.metrics.topic.retention.ms,"
+ "cruise.control.metrics.topic.auto.create.retries, cruise.control.metrics.topic.auto.create.timeout.ms";
protected Storage storage;
private String version;
private Map config = new HashMap<>(0);
private String brokerRackInitImage;
private Rack rack;
private Logging logging;
private TlsSidecar tlsSidecar;
private int replicas;
private String image;
private ResourceRequirements resources;
private Probe livenessProbe;
private Probe readinessProbe;
private JvmOptions jvmOptions;
private KafkaJmxOptions jmxOptions;
private Map metrics;
private Affinity affinity;
private List tolerations;
private ArrayOrObjectKafkaListeners listeners;
private KafkaAuthorization authorization;
private KafkaClusterTemplate template;
private Map additionalProperties = new HashMap<>(0);
@Description("The kafka broker version. Defaults to {DefaultKafkaVersion}. " +
"Consult the user documentation to understand the process required to upgrade or downgrade the version.")
public String getVersion() {
return version;
}
public void setVersion(String version) {
this.version = version;
}
@Description("Kafka broker config properties with the following prefixes cannot be set: " + FORBIDDEN_PREFIXES + " (with the exception of: " + FORBIDDEN_PREFIX_EXCEPTIONS + ").")
@JsonInclude(JsonInclude.Include.NON_EMPTY)
public Map getConfig() {
return config;
}
public void setConfig(Map config) {
this.config = config;
}
@Description("The image of the init container used for initializing the `broker.rack`.")
@JsonInclude(value = JsonInclude.Include.NON_NULL)
public String getBrokerRackInitImage() {
return brokerRackInitImage;
}
public void setBrokerRackInitImage(String brokerRackInitImage) {
this.brokerRackInitImage = brokerRackInitImage;
}
@Description("Configuration of the `broker.rack` broker config.")
@JsonProperty("rack")
@JsonInclude(value = JsonInclude.Include.NON_NULL)
public Rack getRack() {
return rack;
}
public void setRack(Rack rack) {
this.rack = rack;
}
@Description("Storage configuration (disk). Cannot be updated.")
@JsonProperty(required = true)
public Storage getStorage() {
return storage;
}
public void setStorage(Storage storage) {
this.storage = storage;
}
@Description("Logging configuration for Kafka")
@JsonInclude(JsonInclude.Include.NON_EMPTY)
public Logging getLogging() {
return logging;
}
public void setLogging(Logging logging) {
this.logging = logging;
}
@PresentInVersions("v1alpha1-v1beta1")
@DeprecatedProperty
@Deprecated
@Description("TLS sidecar configuration")
@JsonInclude(JsonInclude.Include.NON_NULL)
public TlsSidecar getTlsSidecar() {
return tlsSidecar;
}
public void setTlsSidecar(TlsSidecar tlsSidecar) {
this.tlsSidecar = tlsSidecar;
}
@Description("The number of pods in the cluster.")
@Minimum(1)
@JsonProperty(required = true)
public int getReplicas() {
return replicas;
}
public void setReplicas(int replicas) {
this.replicas = replicas;
}
@Description("The docker image for the pods. The default value depends on the configured `Kafka.spec.kafka.version`.")
@JsonInclude(JsonInclude.Include.NON_DEFAULT)
public String getImage() {
return image;
}
public void setImage(String image) {
this.image = image;
}
@JsonInclude(JsonInclude.Include.NON_NULL)
@KubeLink(group = "core", version = "v1", kind = "resourcerequirements")
@Description("CPU and memory resources to reserve.")
public ResourceRequirements getResources() {
return resources;
}
public void setResources(ResourceRequirements resources) {
this.resources = resources;
}
@JsonInclude(JsonInclude.Include.NON_EMPTY)
@Description("Pod liveness checking.")
public Probe getLivenessProbe() {
return livenessProbe;
}
public void setLivenessProbe(Probe livenessProbe) {
this.livenessProbe = livenessProbe;
}
@JsonInclude(JsonInclude.Include.NON_DEFAULT)
@Description("Pod readiness checking.")
public Probe getReadinessProbe() {
return readinessProbe;
}
public void setReadinessProbe(Probe readinessProbe) {
this.readinessProbe = readinessProbe;
}
@JsonInclude(JsonInclude.Include.NON_EMPTY)
@Description("JVM Options for pods")
public JvmOptions getJvmOptions() {
return jvmOptions;
}
public void setJvmOptions(JvmOptions jvmOptions) {
this.jvmOptions = jvmOptions;
}
@JsonInclude(JsonInclude.Include.NON_EMPTY)
@Description("JMX Options for Kafka brokers")
@JsonProperty("jmxOptions")
public KafkaJmxOptions getJmxOptions() {
return jmxOptions;
}
public void setJmxOptions(KafkaJmxOptions jmxOptions) {
this.jmxOptions = jmxOptions;
}
@JsonInclude(JsonInclude.Include.NON_EMPTY)
@Description("The Prometheus JMX Exporter configuration. " +
"See https://github.com/prometheus/jmx_exporter for details of the structure of this configuration.")
public Map getMetrics() {
return metrics;
}
public void setMetrics(Map metrics) {
this.metrics = metrics;
}
@PresentInVersions("v1alpha1-v1beta1")
@Description("The pod's affinity rules.")
@KubeLink(group = "core", version = "v1", kind = "affinity")
@JsonInclude(JsonInclude.Include.NON_NULL)
@DeprecatedProperty(movedToPath = "spec.kafka.template.pod.affinity")
@Deprecated
public Affinity getAffinity() {
return affinity;
}
@Deprecated
public void setAffinity(Affinity affinity) {
this.affinity = affinity;
}
@PresentInVersions("v1alpha1-v1beta1")
@Description("The pod's tolerations.")
@KubeLink(group = "core", version = "v1", kind = "toleration")
@JsonInclude(JsonInclude.Include.NON_EMPTY)
@DeprecatedProperty(movedToPath = "spec.kafka.template.pod.tolerations")
@Deprecated
public List getTolerations() {
return tolerations;
}
@Deprecated
public void setTolerations(List tolerations) {
this.tolerations = tolerations;
}
@Description("Configures listeners of Kafka brokers")
@JsonProperty(required = true)
public ArrayOrObjectKafkaListeners getListeners() {
return listeners;
}
public void setListeners(ArrayOrObjectKafkaListeners listeners) {
this.listeners = listeners;
}
@Description("Authorization configuration for Kafka brokers")
@JsonInclude(JsonInclude.Include.NON_NULL)
public KafkaAuthorization getAuthorization() {
return authorization;
}
public void setAuthorization(KafkaAuthorization authorization) {
this.authorization = authorization;
}
@Description("Template for Kafka cluster resources. " +
"The template allows users to specify how are the `StatefulSet`, `Pods` and `Services` generated.")
@JsonInclude(JsonInclude.Include.NON_EMPTY)
public KafkaClusterTemplate getTemplate() {
return template;
}
public void setTemplate(KafkaClusterTemplate template) {
this.template = template;
}
@Override
public Map getAdditionalProperties() {
return this.additionalProperties;
}
@Override
public void setAdditionalProperty(String name, Object value) {
this.additionalProperties.put(name, value);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy