Skip to content

Commit 39f0c06

Browse files
committed
removed ssl
1 parent e1c7e87 commit 39f0c06

File tree

2 files changed

+3
-14
lines changed

2 files changed

+3
-14
lines changed

examples/monitoring/prometheus/kafka-lag-exporter/030-ConfigMap.yaml

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -24,18 +24,12 @@ data:
2424
consumer-properties = {
2525
sasl.jaas.config = "org.apache.kafka.common.security.plain.PlainLoginModule required username=\"kafka\" password=\"kafka-secret\";"
2626
sasl.mechanism = "PLAIN"
27-
security.protocol = "SASL_SSL"
28-
ssl.trustore.password = "mystorepassword"
29-
ssl.truststore.location = "/mnt/sslcerts/truststore.p12"
30-
ssl.truststore.type = "PKCS12"
27+
security.protocol = "SASL_PLAINTEXT"
3128
}
3229
admin-client-properties = {
3330
sasl.jaas.config = "org.apache.kafka.common.security.plain.PlainLoginModule required username=\"kafka\" password=\"kafka-secret\";"
3431
sasl.mechanism = "PLAIN"
35-
security.protocol = "SASL_SSL"
36-
ssl.truststore.password = "mystorepassword"
37-
ssl.truststore.location = "/mnt/sslcerts/truststore.p12"
38-
ssl.truststore.type = "PKCS12"
32+
security.protocol = "SASL_PLAINTEXT"
3933
}
4034
labels = {
4135
location = "london"

examples/monitoring/prometheus/kafka-lag-exporter/040-Deployment.yaml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -51,14 +51,9 @@ spec:
5151
volumeMounts:
5252
- name: config-volume
5353
mountPath: /opt/docker/conf/
54-
- name: kafka-ssl-autogenerated
55-
mountPath: /mnt/sslcerts
5654
resources:
5755
{}
5856
volumes:
5957
- name: config-volume
6058
configMap:
61-
name: oso-kafka-lag-exporter-configmap
62-
- name: kafka-ssl-autogenerated
63-
secret:
64-
secretName: kafka-pkcs12
59+
name: oso-kafka-lag-exporter-configmap

0 commit comments

Comments
 (0)