MCPcopy Index your code
hub / github.com/helm/helm / WithTLSClientConfig

Function WithTLSClientConfig

pkg/action/push.go:54–60  ·  view source on GitHub ↗

WithTLSClientConfig sets the certFile, keyFile, and caFile fields on the push configuration object.

(certFile, keyFile, caFile string)

Source from the content-addressed store, hash-verified

52
53// WithTLSClientConfig sets the certFile, keyFile, and caFile fields on the push configuration object.
54func WithTLSClientConfig(certFile, keyFile, caFile string) PushOpt {
55 return func(p *Push) {
56 p.certFile = certFile
57 p.keyFile = keyFile
58 p.caFile = caFile
59 }
60}
61
62// WithInsecureSkipTLSVerify determines if a TLS Certificate will be checked
63func WithInsecureSkipTLSVerify(insecureSkipTLSVerify bool) PushOpt {

Callers 2

newPushCmdFunction · 0.92

Calls

no outgoing calls

Tested by 1

Used in the wild real call sites across dependent graphs

searching dependent graphs…