File tree Expand file tree Collapse file tree 2 files changed +12
-9
lines changed
framework/components/dockercompose Expand file tree Collapse file tree 2 files changed +12
-9
lines changed Original file line number Diff line number Diff line change 1+ - Set Output and UseCache in the input
Original file line number Diff line number Diff line change @@ -18,21 +18,21 @@ import (
1818)
1919
2020type Output struct {
21- ChipIngress * ChipIngressOutput
22- RedPanda * RedPandaOutput
21+ ChipIngress * ChipIngressOutput `toml:"chip_ingress"`
22+ RedPanda * RedPandaOutput `toml:"redpanda"`
2323}
2424
2525type ChipIngressOutput struct {
26- GRPCInternalURL string
27- GRPCExternalURL string
26+ GRPCInternalURL string `toml:"grpc_internal_url"`
27+ GRPCExternalURL string `toml:"grpc_external_url"`
2828}
2929
3030type RedPandaOutput struct {
31- SchemaRegistryInternalURL string
32- SchemaRegistryExternalURL string
33- KafkaInternalURL string
34- KafkaExternalURL string
35- ConsoleExternalURL string
31+ SchemaRegistryInternalURL string `toml:"schema_registry_internal_url"`
32+ SchemaRegistryExternalURL string `toml:"schema_registry_external_url"`
33+ KafkaInternalURL string `toml:"kafka_internal_url"`
34+ KafkaExternalURL string `toml:"kafka_external_url"`
35+ ConsoleExternalURL string `toml:"console_external_url"`
3636}
3737
3838type Input struct {
@@ -206,6 +206,8 @@ func New(in *Input) (*Output, error) {
206206 },
207207 }
208208
209+ in .Output = output
210+ in .UseCache = true
209211 framework .L .Info ().Msg ("Chip Ingress stack started" )
210212
211213 return output , nil
You can’t perform that action at this time.
0 commit comments