Before this change, we simply did a search/replace on the stringified kubeconfig blob. Now we're parsing it into a kubeconfig struct and modify the fields directly in a more controlled manner. Here's what we change: - server URL: based on the chosen APIHost and APIPort - cluster name: default -> k3d-CLUSTERNAME - user name: default -> admin@k3d-CLUSTERNAME - context name: default -> admin@k3d-CLUSTERNAME
32 lines
832 B
Go
32 lines
832 B
Go
// Copyright 2011 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package proxy
|
|
|
|
import (
|
|
"context"
|
|
"net"
|
|
)
|
|
|
|
type direct struct{}
|
|
|
|
// Direct implements Dialer by making network connections directly using net.Dial or net.DialContext.
|
|
var Direct = direct{}
|
|
|
|
var (
|
|
_ Dialer = Direct
|
|
_ ContextDialer = Direct
|
|
)
|
|
|
|
// Dial directly invokes net.Dial with the supplied parameters.
|
|
func (direct) Dial(network, addr string) (net.Conn, error) {
|
|
return net.Dial(network, addr)
|
|
}
|
|
|
|
// DialContext instantiates a net.Dialer and invokes its DialContext receiver with the supplied parameters.
|
|
func (direct) DialContext(ctx context.Context, network, addr string) (net.Conn, error) {
|
|
var d net.Dialer
|
|
return d.DialContext(ctx, network, addr)
|
|
}
|