We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8d7143 commit 0560d23Copy full SHA for 0560d23
world/components.go
@@ -189,14 +189,16 @@ func (maker ComponentMaker) BBS(argv ...string) ifrit.Runner {
189
Command: exec.Command(
190
maker.Artifacts.Executables["bbs"],
191
append([]string{
192
- "-listenAddress", maker.Addresses.BBS,
+ "-activeKeyLabel=" + "secure-key-1",
193
"-advertiseURL", "http://" + maker.Addresses.BBS,
194
"-auctioneerAddress", "http://" + maker.Addresses.Auctioneer,
195
"-consulCluster", maker.ConsulCluster(),
196
- "-etcdCluster", maker.EtcdCluster(),
+ "-encryptionKey=" + "secure-key-1:secure-passphrase",
197
+ "-etcdCaFile", maker.SSL.CACert,
198
"-etcdCertFile", maker.SSL.ClientCert,
199
+ "-etcdCluster", maker.EtcdCluster(),
200
"-etcdKeyFile", maker.SSL.ClientKey,
- "-etcdCaFile", maker.SSL.CACert,
201
+ "-listenAddress", maker.Addresses.BBS,
202
"-logLevel", "debug",
203
}, argv...)...,
204
),
0 commit comments