feat(push): stub for 'image push' command and Dialer interface for cluster connectors

This commit is contained in:
Pasha Sviderski
2025-09-23 16:54:47 +10:00
parent 1a1afece7d
commit 9f6880b701
7 changed files with 87 additions and 1 deletions
+5
View File
@@ -5,6 +5,7 @@ import (
"fmt"
"net/netip"
"golang.org/x/net/proxy"
"google.golang.org/grpc"
"google.golang.org/grpc/credentials/insecure"
)
@@ -29,6 +30,10 @@ func (c *TCPConnector) Connect(_ context.Context) (*grpc.ClientConn, error) {
return conn, nil
}
func (c *TCPConnector) Dialer() (proxy.ContextDialer, error) {
return nil, fmt.Errorf("proxy connections are not supported over a TCP connection")
}
func (c *TCPConnector) Close() error {
return nil
}