Allow overriding etcd version in tests

... so that we can try multiple etcd versions more easily.

Change-Id: I2ac707e559252fa18512a28ae7491ec60e73f791
This commit is contained in:
Takashi Kajinami
2025-06-17 21:27:21 +09:00
parent 8df645f382
commit 1204f8489f

View File

@@ -1,7 +1,7 @@
#!/bin/bash
set -eux
if [ -z "$(which etcd)" ]; then
ETCD_VERSION=3.4.27
ETCD_VERSION=${ETCD_VERSION:-3.4.27}
case `uname -s` in
Darwin)
OS=darwin