@@ -23,20 +23,23 @@ import (
23
23
24
24
// Config for the TAPA
25
25
type Config struct {
26
- Name string `default:"nsc" desc:"Name of the target"`
27
- Node string `default:"" desc:"Node name the target is running on" split_words:"true"`
28
- Namespace string `default:"default" desc:"Namespace the trenches to connect to are running on" split_words:"true"`
29
- Socket string `default:"/ambassador.sock" desc:"Path of the socket file of the TAPA" split_words:"true"`
30
- NSMSocket url.URL `default:"unix:///var/lib/networkservicemesh/nsm.io.sock" desc:"Path of the socket file of NSM" envconfig:"nsm_socket"`
31
- NSPServiceName string `default:"nsp-service" desc:"Domain name of the NSP Service" envconfig:"nsp_service_name"`
32
- NSPServicePort int `default:"7778" desc:"port of the NSP Service" envconfig:"nsp_service_port"`
33
- Timeout time.Duration `default:"15s" desc:"timeout of NSM request/close, NSP register/unregister..." split_words:"true"`
34
- DialTimeout time.Duration `default:"5s" desc:"timeout to dial NSMgr" split_words:"true"`
35
- MaxTokenLifetime time.Duration `default:"24h" desc:"maximum lifetime of tokens" split_words:"true"`
36
- LogLevel string `default:"DEBUG" desc:"Log level" split_words:"true"`
37
- NSPEntryTimeout time.Duration `default:"30s" desc:"Timeout of the entries" envconfig:"nsp_entry_timeout"`
38
- GRPCMaxBackoff time.Duration `default:"5s" desc:"Upper bound on gRPC connection backoff delay" envconfig:"grpc_max_backoff"`
39
- GRPCProbeRPCTimeout time.Duration `default:"1s" desc:"RPC timeout of internal gRPC health probe" envconfig:"grpc_probe_rpc_timeout"`
26
+ Name string `default:"nsc" desc:"Name of the target"`
27
+ Node string `default:"" desc:"Node name the target is running on" split_words:"true"`
28
+ Namespace string `default:"default" desc:"Namespace the trenches to connect to are running on" split_words:"true"`
29
+ Socket string `default:"/ambassador.sock" desc:"Path of the socket file of the TAPA" split_words:"true"`
30
+ NSMSocket url.URL `default:"unix:///var/lib/networkservicemesh/nsm.io.sock" desc:"Path of the socket file of NSM" envconfig:"nsm_socket"`
31
+ NSPServiceName string `default:"nsp-service" desc:"Domain name of the NSP Service" envconfig:"nsp_service_name"`
32
+ NSPServicePort int `default:"7778" desc:"port of the NSP Service" envconfig:"nsp_service_port"`
33
+ Timeout time.Duration `default:"15s" desc:"timeout of NSM request/close, NSP register/unregister..." split_words:"true"`
34
+ DialTimeout time.Duration `default:"5s" desc:"timeout to dial NSMgr" split_words:"true"`
35
+ MaxTokenLifetime time.Duration `default:"24h" desc:"maximum lifetime of tokens" split_words:"true"`
36
+ LogLevel string `default:"DEBUG" desc:"Log level" split_words:"true"`
37
+ NSPEntryTimeout time.Duration `default:"30s" desc:"Timeout of the entries" envconfig:"nsp_entry_timeout"`
38
+ GRPCMaxBackoff time.Duration `default:"5s" desc:"Upper bound on gRPC connection backoff delay" envconfig:"grpc_max_backoff"`
39
+ GRPCProbeRPCTimeout time.Duration `default:"1s" desc:"RPC timeout of internal gRPC health probe" envconfig:"grpc_probe_rpc_timeout"`
40
+ LivenessCheckInterval time.Duration `default:"2s" desc:"Dataplane liveness check interval" split_words:"true"`
41
+ LivenessCheckTimeout time.Duration `default:"1s" desc:"Dataplane liveness check timeout" split_words:"true"`
42
+ LivenessCheckEnabled bool `default:"false" desc:"Dataplane liveness check enabled/disabled" split_words:"true"`
40
43
}
41
44
42
45
// IsValid checks if the configuration is valid
0 commit comments