Skip to content

Commit

Permalink
test(e2e): update Kafka topic access script and resource limits
Browse files Browse the repository at this point in the history
  • Loading branch information
lwpk110 committed Jan 14, 2025
1 parent 42ff513 commit 0218f15
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion test/e2e/tls/client-tls-access-configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ data:
exit 1
fi
if /kubedoop/kafka/bin/kafka-topics.sh --list --topic "$TOPIC" --bootstrap-server "$KAFKA" --command-config --timeout-ms 30000 /tmp/client.config | grep "$TOPIC"
if /kubedoop/kafka/bin/kafka-topics.sh --list --topic "$TOPIC" --bootstrap-server "$KAFKA" --command-config /tmp/client.config | grep "$TOPIC"
then
echo "[SUCCESS] Secure client topic read!"
else
Expand Down
2 changes: 1 addition & 1 deletion test/e2e/tls/client-tls-access-pod.txt
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ spec:
resources:
limits:
memory: "1.5Gi"
cpu: "300m"
cpu: "400m"
volumeMounts:
- name: client-tls
mountPath: /kubedoop/client-tls
Expand Down
4 changes: 2 additions & 2 deletions test/e2e/tls/kafka.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ spec:
config:
resources:
cpu:
min: 200m
max: 400m
min: 300m
max: 600m
memory:
limit: "1Gi"

0 comments on commit 0218f15

Please sign in to comment.