我有一个应用程序与2个豆荚,其中一个豆荚是摄取数据和其他想要消耗它。我正在尝试与单节点Kubernetes设置。
`in pod1`
- name: ingest_cfg
value: zmq_tcp,0.0.0.0:9000 [where pod1 is publishing on port 9000, even this I want to be dynamically configurable]
`in pod2`
- name: ingest_cfg
value: "zmq_tcp,IPadd:pv" [where IPadd should be Ip address where pod 1 is publishing and pv is port number where pod1 has published]
现在,我需要知道如何在代码中配置这个。我不希望硬编码的IP地址& 端口。任何指针将是非常有用的.我已经尝试使用服务名称,但这指向集群IP地址。