我们正在尝试根据文档将外部启动器设置为部署在GKE集群中的链式容器:https://docs.chain.link/docs/external-initiators-in-nodes/
我登录到pod:
kubectl exec -it -n chainlink chainlink-75dd5b6bdf-b4kwr -- /bin/bash
在这里,我尝试创建外部启动器:
root@chainlink-75dd5b6bdf-b4kwr:/home/root# chainlink initiators create xxx xxx
No help topic for 'initiators'我甚至在chainlink cli选项中看不到启动器:
root@chainlink-75dd5b6bdf-b4kwr:/home/root# chainlink
NAME:
chainlink - CLI for Chainlink
USAGE:
chainlink [global options] command [command options] [arguments...]
VERSION:
0.9.10@7cd042c1a94c57219ed826a6eab46752d63fa67a
COMMANDS:
admin Commands for remotely taking admin related actions
attempts, txas Commands for managing Ethereum Transaction Attempts
bridges Commands for Bridges communicating with External Adapters
config Commands for the node's configuration
job_specs Commands for managing Job Specs (jobs V1)
jobs Commands for managing Jobs (V2)
keys Commands for managing various types of keys used by the Chainlink node
node, local Commands for admin actions that must be run locally
runs Commands for managing Runs
txs Commands for handling Ethereum transactions
help, h Shows a list of commands or help for one command
GLOBAL OPTIONS:
--json, -j json output as opposed to table
--help, -h show help
--version, -v print the version链式链接版本0.9.10。
你能澄清一下我做错了什么吗?
发布于 2021-09-28 21:51:21
您需要确保在.env文件中将FEATURE_EXTERNAL_INITIATORS环境变量设置为true:
FEATURE_EXTERNAL_INITIATORS=true
这将打开对Chainlink CLI中的initiators命令的访问,您可以从那里继续执行指令。
https://stackoverflow.com/questions/69281625
复制相似问题