@@ -25,27 +25,30 @@ import (
25
25
26
26
// Config for the proxy
27
27
type Config struct {
28
- Name string `default:"proxy" desc:"Pod Name"`
29
- ServiceName string `default:"proxy" desc:"Name of the Network Service" split_words:"true"`
30
- ConnectTo url.URL `default:"unix:///var/lib/networkservicemesh/nsm.io.sock" desc:"url to connect to NSM" split_words:"true"`
31
- DialTimeout time.Duration `default:"5s" desc:"timeout to dial NSMgr" split_words:"true"`
32
- RequestTimeout time.Duration `default:"15s" desc:"timeout to request NSE" split_words:"true"`
33
- MaxTokenLifetime time.Duration `default:"24h" desc:"maximum lifetime of tokens" split_words:"true"`
34
- IPAMService string `default:"ipam-service:7777" desc:"IP (or domain) and port of the IPAM Service" split_words:"true"`
35
- Host string `default:"" desc:"Host name the proxy is running on" split_words:"true"`
36
- NetworkServiceName string `default:"load-balancer" desc:"Name of the network service the proxy request the connection" split_words:"true"`
37
- Namespace string `default:"default" desc:"Namespace the pod is running on" split_words:"true"`
38
- Trench string `default:"default" desc:"Trench the pod is running on" split_words:"true"`
39
- Conduit string `default:"load-balancer" desc:"Name of the conduit" split_words:"true"`
40
- NSPServiceName string `default:"nsp-service" desc:"IP (or domain) of the NSP Service" split_words:"true"`
41
- NSPServicePort int `default:"7778" desc:"port of the NSP Service" split_words:"true"`
42
- IPFamily string `default:"dualstack" desc:"ip family" envconfig:"ip_family"`
43
- LogLevel string `default:"DEBUG" desc:"Log level" split_words:"true"`
44
- MTU int `default:"1500" desc:"Conduit MTU considered by local NSCs and NSE composing the network mesh" split_words:"true"`
45
- GRPCKeepaliveTime time.Duration `default:"30s" desc:"gRPC keepalive timeout"`
46
- GRPCProbeRPCTimeout time.Duration `default:"1s" desc:"RPC timeout of internal gRPC health probe" envconfig:"grpc_probe_rpc_timeout"`
47
- GRPCMaxBackoff time.Duration `default:"5s" desc:"Upper bound on gRPC connection backoff delay" envconfig:"grpc_max_backoff"`
48
- IPReleaseDelay time.Duration `default:"20s" desc:"delay releasing IP address of NSM connection" envconfig:"ip_release_delay"`
28
+ Name string `default:"proxy" desc:"Pod Name"`
29
+ ServiceName string `default:"proxy" desc:"Name of the Network Service" split_words:"true"`
30
+ ConnectTo url.URL `default:"unix:///var/lib/networkservicemesh/nsm.io.sock" desc:"url to connect to NSM" split_words:"true"`
31
+ DialTimeout time.Duration `default:"5s" desc:"timeout to dial NSMgr" split_words:"true"`
32
+ RequestTimeout time.Duration `default:"15s" desc:"timeout to request NSE" split_words:"true"`
33
+ MaxTokenLifetime time.Duration `default:"24h" desc:"maximum lifetime of tokens" split_words:"true"`
34
+ IPAMService string `default:"ipam-service:7777" desc:"IP (or domain) and port of the IPAM Service" split_words:"true"`
35
+ Host string `default:"" desc:"Host name the proxy is running on" split_words:"true"`
36
+ NetworkServiceName string `default:"load-balancer" desc:"Name of the network service the proxy request the connection" split_words:"true"`
37
+ Namespace string `default:"default" desc:"Namespace the pod is running on" split_words:"true"`
38
+ Trench string `default:"default" desc:"Trench the pod is running on" split_words:"true"`
39
+ Conduit string `default:"load-balancer" desc:"Name of the conduit" split_words:"true"`
40
+ NSPServiceName string `default:"nsp-service" desc:"IP (or domain) of the NSP Service" split_words:"true"`
41
+ NSPServicePort int `default:"7778" desc:"port of the NSP Service" split_words:"true"`
42
+ IPFamily string `default:"dualstack" desc:"ip family" envconfig:"ip_family"`
43
+ LogLevel string `default:"DEBUG" desc:"Log level" split_words:"true"`
44
+ MTU int `default:"1500" desc:"Conduit MTU considered by local NSCs and NSE composing the network mesh" split_words:"true"`
45
+ GRPCKeepaliveTime time.Duration `default:"30s" desc:"gRPC keepalive timeout"`
46
+ GRPCProbeRPCTimeout time.Duration `default:"1s" desc:"RPC timeout of internal gRPC health probe" envconfig:"grpc_probe_rpc_timeout"`
47
+ GRPCMaxBackoff time.Duration `default:"5s" desc:"Upper bound on gRPC connection backoff delay" envconfig:"grpc_max_backoff"`
48
+ IPReleaseDelay time.Duration `default:"20s" desc:"delay releasing IP address of NSM connection" envconfig:"ip_release_delay"`
49
+ LivenessCheckInterval time.Duration `default:"2s" desc:"Dataplane liveness check interval" split_words:"true"`
50
+ LivenessCheckTimeout time.Duration `default:"1s" desc:"Dataplane liveness check timeout" split_words:"true"`
51
+ LivenessCheckEnabled bool `default:"false" desc:"Dataplane liveness check enabled/disabled" split_words:"true"`
49
52
}
50
53
51
54
// IsValid checks if the configuration is valid
0 commit comments