forked from ray-project/ray
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[core] Support encrypted redis connection. (ray-project#28628)
This PR supports the encrypted redis connection. If the address starts with rediss://, it'll start the redis in SSL mode. To support better ssl, redis is also upgraded. It's not supposed to impact ray because it's the user's responsibility to provide a redis. Right now all flags are provided by the os envs. It's not ideal and we should design a better format when we refactor the db layer. Besides, right now gRPC is using OS envs for the encrypted connection in ray, just follow this pattern for now.
- Loading branch information
Showing
13 changed files
with
294 additions
and
62 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
import pytest | ||
import subprocess | ||
import sys | ||
import ray | ||
from ray._private.test_utils import enable_external_redis | ||
|
||
|
||
@pytest.fixture | ||
def setup_tls(tmp_path, monkeypatch): | ||
shell_scripts = f""" | ||
mkdir -p {str(tmp_path)}/tls | ||
openssl genrsa -out {str(tmp_path)}/tls/ca.key 4096 | ||
openssl req \ | ||
-x509 -new -nodes -sha256 \ | ||
-key {str(tmp_path)}/tls/ca.key \ | ||
-days 3650 \ | ||
-subj '/O=Redis Test/CN=Certificate Authority' \ | ||
-out {str(tmp_path)}/tls/ca.crt | ||
openssl genrsa -out {str(tmp_path)}/tls/redis.key 2048 | ||
openssl req \ | ||
-new -sha256 \ | ||
-key {str(tmp_path)}/tls/redis.key \ | ||
-subj '/O=Redis Test/CN=Server' | \ | ||
openssl x509 \ | ||
-req -sha256 \ | ||
-CA {str(tmp_path)}/tls/ca.crt \ | ||
-CAkey {str(tmp_path)}/tls/ca.key \ | ||
-CAserial {str(tmp_path)}/tls/ca.txt \ | ||
-CAcreateserial \ | ||
-days 365 \ | ||
-out {str(tmp_path)}/tls/redis.crt | ||
openssl dhparam -out {str(tmp_path)}/tls/redis.dh 2048 | ||
""" | ||
(tmp_path / "gen-test-certs.sh").write_text(shell_scripts) | ||
|
||
print(subprocess.check_output(["bash", f"{tmp_path}/gen-test-certs.sh"])) | ||
""" | ||
ls {tmp_path}/tls/ | ||
ca.crt ca.key ca.txt redis.crt redis.dh redis.key | ||
""" | ||
|
||
monkeypatch.setenv("RAY_REDIS_ENABLE_SSL", "true") | ||
monkeypatch.setenv("RAY_REDIS_CA_CERT", f"{str(tmp_path)}/tls/ca.crt") | ||
|
||
monkeypatch.setenv("RAY_REDIS_CLIENT_CERT", f"{str(tmp_path)}/tls/redis.crt") | ||
monkeypatch.setenv("RAY_REDIS_CLIENT_KEY", f"{str(tmp_path)}/tls/redis.key") | ||
ray._raylet.Config.initialize("") | ||
yield tmp_path | ||
|
||
|
||
@pytest.mark.skipif(not enable_external_redis(), reason="Only work for redis mode") | ||
@pytest.mark.skipif(sys.platform != "linux", reason="Only work in linux") | ||
def test_redis_tls(setup_tls, ray_start_cluster_head): | ||
@ray.remote | ||
def hello(): | ||
return "world" | ||
|
||
assert ray.get(hello.remote()) == "world" | ||
|
||
|
||
if __name__ == "__main__": | ||
sys.exit(pytest.main(["-sv", __file__])) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.