Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions examples/kafka/verify.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ export NAME=kafka
export PORT_PROXY="${KAFKA_PORT_PROXY:-11100}"
export PORT_ADMIN="${KAFKA_PORT_ADMIN:-11101}"

# Explicitly specified the service want to start, since the `kafka-client` is expected to
# not start.
UPARGS="proxy kafka-server zookeeper"

# shellcheck source=examples/verify-common.sh
. "$(dirname "${BASH_SOURCE[0]}")/../verify-common.sh"

Expand Down
2 changes: 2 additions & 0 deletions examples/websocket/verify.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ mkdir -p certs
openssl req -batch -new -x509 -nodes -keyout certs/key.pem -out certs/cert.pem
openssl pkcs12 -export -passout pass: -out certs/output.pkcs12 -inkey certs/key.pem -in certs/cert.pem

UPARGS="proxy-ws proxy-wss-wss proxy-wss-passthrough service-ws service-wss"

bring_up_example

run_log "Interact with web socket ws -> ws"
Expand Down