Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 23 of 23 for pomPath (0.09 sec)

  1. pkg/kubelet/certificate/bootstrap/bootstrap.go

    	}
    
    	clientConfig := restclient.AnonymousClientConfig(bootstrapClientConfig)
    	pemPath := store.CurrentPath()
    	clientConfig.KeyFile = pemPath
    	clientConfig.CertFile = pemPath
    	if err := writeKubeconfigFromBootstrapping(clientConfig, kubeconfigPath, pemPath); err != nil {
    		return nil, nil, err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 27 08:04:25 UTC 2022
    - 14.2K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/util/config/cluster_test.go

    		t.Run(rt.name, func(t2 *testing.T) {
    			if len(rt.pemContent) > 0 {
    				pemPath := filepath.Join(tmpdir, "kubelet.pem")
    				err := os.WriteFile(pemPath, rt.pemContent, 0644)
    				if err != nil {
    					t.Errorf("Couldn't create pem file: %v", err)
    					return
    				}
    				rt.kubeconfigContent = []byte(strings.Replace(string(rt.kubeconfigContent), "kubelet.pem", pemPath, -1))
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 13:07:56 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  3. istioctl/pkg/proxyconfig/proxyconfig.go

    			return "", fmt.Errorf("failed to retrieve Pod %s/%s: %v", podNamespace, podName, err)
    		}
    
    		promPath, promPort, err := util.PrometheusPathAndPort(pod)
    		if err != nil {
    			return "", fmt.Errorf("failed to retrieve prometheus path and port from Pod %s/%s: %v", podNamespace, podName, err)
    		}
    		path = promPath
    		port = promPort
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 03:28:36 UTC 2024
    - 48K bytes
    - Viewed (0)
Back to top