Created
January 19, 2021 13:07
-
-
Save raj-saxena/7e193a3cb97e1f50eb10b93e7a5cbb6b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Ouput of `k get kafka -o yaml -n strimzi` | |
apiVersion: v1 | |
items: | |
- apiVersion: kafka.strimzi.io/v1beta1 | |
kind: Kafka | |
metadata: | |
annotations: | |
meta.helm.sh/release-name: kafka | |
meta.helm.sh/release-namespace: strimzi | |
creationTimestamp: "2020-12-28T08:06:05Z" | |
generation: 13 | |
labels: | |
app.kubernetes.io/managed-by: Helm | |
name: my-cluster | |
namespace: strimzi | |
resourceVersion: "174686677" | |
selfLink: /apis/kafka.strimzi.io/v1beta1/namespaces/strimzi/kafkas/my-cluster | |
uid: b5f3791a-692f-4e40-b11c-d6634eb3062c | |
spec: | |
entityOperator: | |
topicOperator: | |
resources: | |
limits: | |
cpu: "1" | |
memory: 512Mi | |
requests: | |
cpu: "1" | |
memory: 512Mi | |
userOperator: | |
resources: | |
limits: | |
cpu: "1" | |
memory: 512Mi | |
requests: | |
cpu: "1" | |
memory: 512Mi | |
kafka: | |
config: | |
auto.create.topics.enable: true | |
default.replication.factor: 3 | |
group.initial.rebalance.delay.ms: 0 | |
log.retention.bytes: -1 | |
log.retention.check.interval.ms: 300000 | |
log.retention.hours: -1 | |
log.segment.bytes: 1073741824 | |
max.message.bytes: 1048588 | |
max.partition.fetch.bytes: 1048576 | |
max.request.size: 1048576 | |
message.max.bytes: 1048588 | |
num.io.threads: 8 | |
num.network.threads: 3 | |
num.partitions: 1 | |
num.recovery.threads.per.data.dir: 1 | |
offsets.topic.replication.factor: 3 | |
replica.fetch.max.bytes: 1048576 | |
socket.receive.buffer.bytes: 102400 | |
socket.request.max.bytes: 104857600 | |
socket.send.buffer.bytes: 102400 | |
transaction.state.log.min.isr: 2 | |
transaction.state.log.replication.factor: 3 | |
zookeeper.connection.timeout.ms: 6000 | |
jmxOptions: {} | |
jvmOptions: | |
-Xms: 2048m | |
-Xmx: 2048m | |
listeners: | |
- configuration: | |
useServiceDnsDomain: true | |
name: plain | |
port: 9092 | |
tls: false | |
type: internal | |
rack: | |
topologyKey: topology.kubernetes.io/zone | |
replicas: 3 | |
resources: | |
limits: | |
cpu: 2 | |
memory: 8Gi | |
requests: | |
cpu: 1 | |
memory: 4Gi | |
storage: | |
size: 20Gi | |
type: persistent-claim | |
template: | |
pod: | |
metadata: | |
annotations: | |
ad.datadoghq.com/kafka.check_names: '["kafka"]' | |
ad.datadoghq.com/kafka.init_configs: '[{"is_jmx": true, "collect_default_metrics": | |
true}]' | |
ad.datadoghq.com/kafka.instances: '[{"host": "%%host%%","port":"9999"}]' | |
ad.datadoghq.com/kafka.logs: '[{"source":"kafka","service":"kafka"}]' | |
version: 2.6.0 | |
zookeeper: | |
jvmOptions: | |
-Xms: 2048m | |
-Xmx: 2048m | |
replicas: 3 | |
resources: | |
limits: | |
cpu: 1 | |
memory: 2Gi | |
requests: | |
cpu: 0.5 | |
memory: 1Gi | |
storage: | |
size: 5Gi | |
type: persistent-claim | |
status: | |
conditions: | |
- lastTransitionTime: 2021-01-19T08:09:19+0000 | |
status: "True" | |
type: Ready | |
listeners: | |
- addresses: | |
- host: my-cluster-kafka-bootstrap.strimzi.svc.cluster.local | |
port: 9092 | |
bootstrapServers: my-cluster-kafka-bootstrap.strimzi.svc.cluster.local:9092 | |
type: plain | |
observedGeneration: 13 | |
kind: List | |
metadata: | |
resourceVersion: "" | |
selfLink: "" | |
➜ helm-charts git:(PLAT-274) ✗ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment