while installing the prerequisite charts got the f...
# all-things-deployment
p
while installing the prerequisite charts got the following error in
datahub-prerequisites-cp-schema-registry
pod. I am trying to install it in EKS.
[main] WARN org.apache.kafka.clients.ClientUtils - Couldn't resolve server prerequisites-kafka:9092 from bootstrap.servers as DNS resolution failed for prerequisites-kafka
[main] ERROR io.confluent.admin.utils.cli.KafkaReadyCommand - Error while running kafka-ready.
Copy code
org.apache.kafka.common.KafkaException: Failed to create new KafkaAdminClient
	at org.apache.kafka.clients.admin.KafkaAdminClient.createInternal(KafkaAdminClient.java:499)
	at org.apache.kafka.clients.admin.Admin.create(Admin.java:73)
	at org.apache.kafka.clients.admin.AdminClient.create(AdminClient.java:49)
	at io.confluent.admin.utils.ClusterStatus.isKafkaReady(ClusterStatus.java:138)
	at io.confluent.admin.utils.cli.KafkaReadyCommand.main(KafkaReadyCommand.java:150)
Caused by: org.apache.kafka.common.config.ConfigException: No resolvable bootstrap urls given in bootstrap.servers
	at org.apache.kafka.clients.ClientUtils.parseAndValidateAddresses(ClientUtils.java:89)
	at org.apache.kafka.clients.ClientUtils.parseAndValidateAddresses(ClientUtils.java:48)
	at org.apache.kafka.clients.admin.KafkaAdminClient.createInternal(KafkaAdminClient.java:455)
Just wanted to double check if you faced this before and in case have a resolution for this, before I start the debug process.
e
Has kafka spun up correctly? are the kafka/bootstrap pods and kafka service are all healthy?
p
here are the ouput of other pods.
Copy code
NAME                                                        READY   STATUS             RESTARTS   AGE
datahub-prerequisites-cp-schema-registry-68bf685589-zgxzl   1/2     CrashLoopBackOff   112        9h
datahub-prerequisites-kafka-0                               1/1     Running            2          9h
datahub-prerequisites-mysql-0                               1/1     Running            0          9h
datahub-prerequisites-neo4j-community-0                     1/1     Running            0          9h
datahub-prerequisites-zookeeper-0                           1/1     Running            0          9h
elasticsearch-master-0                                      0/1     Running            0          9h
elasticsearch-master-1                                      0/1     Pending            0          9h
elasticsearch-master-2                                      0/1     Pending            0          9h
e
ah so the default values assume you deployed this chart with “prerequisites” release name
since you used “datahub-prerequisites” you need to update the values!
for this one, cp-helm-charts.cp-schema-registry.kafka.bootstrapServers
p
ah got it.. thanks .. let me try
e
should be set to “datahub-prerequisites-kafka:9092”
You will have to change some values for the datahub chart as well!
p
yup it is working. thanks a lot
e
awesome!
b
Hi guys what other values did you modify for this to work