What is the problem you're trying to solve
The TCP service does not have authentication, anyone with the tcp address could connect to the service.
Describe the solution you'd like
Add options tcp_client_ca_cert, authenticate client certificate by client ca cert
|
type GRPCConfig struct { |
|
Address string `toml:"address"` |
|
TCPAddress string `toml:"tcp_address"` |
|
TCPTLSCert string `toml:"tcp_tls_cert"` |
|
TCPTLSKey string `toml:"tcp_tls_key"` |
What is the problem you're trying to solve
The TCP service does not have authentication, anyone with the tcp address could connect to the service.
Describe the solution you'd like
Add options
tcp_client_ca_cert, authenticate client certificate by client ca certcontainerd/services/server/config/config.go
Lines 122 to 126 in 0a3a77b