deferredLoadingClientConfig is a modified copy of k8s.io/kubernetes/pkg/client/unversioned/clientcmd.DeferredLoadingClientConfig. DeferredLoadingClientConfig is a ClientConfig interface that is backed by a set of loading rules It is used in cases where the loading rules may change after you've insta
| 120 | // the parse happens and you want your calling code to be ignorant of how the values are being mutated to avoid |
| 121 | // passing extraneous information down a call stack |
| 122 | type deferredLoadingClientConfig struct { |
| 123 | loadingRules *clientConfigLoadingRules |
| 124 | |
| 125 | clientConfig clientConfig |
| 126 | } |
| 127 | |
| 128 | // NewNonInteractiveDeferredLoadingClientConfig is a modified copy of k8s.io/kubernetes/pkg/client/unversioned/clientcmd.NewNonInteractiveDeferredLoadingClientConfig. |
| 129 | // NewNonInteractiveDeferredLoadingClientConfig creates a ConfigClientClientConfig using the passed context name |
nothing calls this directly
no outgoing calls
no test coverage detected