如何在 Ruby (InSpec) 配置文件中解析 Cassandra.yaml 中的以下 yaml 以获取种子值。我会在一个字符串中获取所有 3 个 Ipaddress 或在 3 个字符串中获取 3 个 IP 地址。
种子提供者:
- class_name: org.apache.cassandra.locator.SimpleSeedProvider
parameters:
# seeds is actually a comma-delimited list of addresses.
# Ex: "<ip1>,<ip2>,<ip3>"
- seeds: "10.0.0.1, 10.0.0.2, 10.0.0.3"