12345678910111213141516171819202122232425262728293031 |
- package config
- func KubeletConfigurationPathRefs(kc *KubeletConfiguration) []*string {
- paths := []*string{}
- paths = append(paths, &kc.StaticPodPath)
- paths = append(paths, &kc.Authentication.X509.ClientCAFile)
- paths = append(paths, &kc.TLSCertFile)
- paths = append(paths, &kc.TLSPrivateKeyFile)
- paths = append(paths, &kc.ResolverConfig)
- return paths
- }
|