Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 322 for Getcwd (0.16 sec)

  1. cmd/kubeadm/app/apis/kubeadm/v1beta3/doc.go

    //	    - "10.100.0.1"
    //	  # external:
    //	    # endpoints:
    //	    # - "10.100.0.1:2379"
    //	    # - "10.100.0.2:2379"
    //	    # caFile: "/etcd/kubernetes/pki/etcd/etcd-ca.crt"
    //	    # certFile: "/etcd/kubernetes/pki/etcd/etcd.crt"
    //	    # keyFile: "/etcd/kubernetes/pki/etcd/etcd.key"
    //	networking:
    //	  serviceSubnet: "10.96.0.0/16"
    //	  podSubnet: "10.244.0.0/24"
    //	  dnsDomain: "cluster.local"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 05 13:30:26 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/etcd3/metrics/metrics.go

    		&compbasemetrics.HistogramOpts{
    			Name: "etcd_request_duration_seconds",
    			Help: "Etcd request latency in seconds for each operation and object type.",
    			// Etcd request latency in seconds for each operation and object type.
    			// This metric is used for verifying etcd api call latencies SLO
    			// keep consistent with apiserver metric 'requestLatencies' in
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 21:15:32 UTC 2024
    - 11K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/phases/upgrade/staticpods_test.go

    	}{
    		{
    			name:             "external etcd but no etcd upgrade",
    			cfg:              externalEtcd,
    			etcdUpgrade:      false,
    			shouldDeleteEtcd: true,
    		},
    		{
    			name:             "external etcd with etcd upgrade",
    			cfg:              externalEtcd,
    			etcdUpgrade:      true,
    			shouldDeleteEtcd: true,
    		},
    		{
    			name:             "stacked etcd but no etcd upgrade",
    			cfg:              stackedEtcd,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 32K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/apis/kubeadm/v1beta3/types.go

    // ClusterConfiguration contains cluster-wide configuration for a kubeadm cluster
    type ClusterConfiguration struct {
    	metav1.TypeMeta `json:",inline"`
    
    	// Etcd holds configuration for etcd.
    	// +optional
    	Etcd Etcd `json:"etcd,omitempty"`
    
    	// Networking holds configuration for the networking topology of the cluster.
    	// +optional
    	Networking Networking `json:"networking,omitempty"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  5. go.mod

    	github.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2 // indirect
    	github.com/xlab/treeprint v1.2.0 // indirect
    	go.etcd.io/bbolt v1.3.9 // indirect
    	go.etcd.io/etcd/client/v2 v2.305.13 // indirect
    	go.etcd.io/etcd/pkg/v3 v3.5.13 // indirect
    	go.etcd.io/etcd/raft/v3 v3.5.13 // indirect
    	go.etcd.io/etcd/server/v3 v3.5.13 // indirect
    	go.opencensus.io v0.24.0 // indirect
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:11 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/cmd/phases/init/certs.go

    		data, ok := c.(InitData)
    		if !ok {
    			return errors.New("certs phase invoked with an invalid data struct")
    		}
    
    		// if using external etcd, skips etcd certificate authority generation
    		if data.Cfg().Etcd.External != nil && ca.Name == "etcd-ca" {
    			fmt.Printf("[certs] External etcd mode: Skipping %s certificate authority generation\n", ca.BaseName)
    			return nil
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 06:35:45 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/test/pgo_inl_test.go

    	}
    }
    
    // TestPGOIntendedInlining tests that specific functions are inlined when PGO
    // is applied to the exact source that was profiled.
    func TestPGOIntendedInlining(t *testing.T) {
    	wd, err := os.Getwd()
    	if err != nil {
    		t.Fatalf("error getting wd: %v", err)
    	}
    	srcDir := filepath.Join(wd, "testdata/pgo/inline")
    
    	// Copy the module to a scratch location so we can add a go.mod.
    	dir := t.TempDir()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/phases/certs/certs_test.go

    				"sa.key":             key,
    				"etcd/ca.crt":        caCert,
    				"etcd/ca.key":        caKey,
    			},
    		},
    		{
    			name: "missing ca.crt",
    			files: certstestutil.PKIFiles{
    				"ca.key":             caKey,
    				"front-proxy-ca.crt": caCert,
    				"front-proxy-ca.key": caKey,
    				"sa.pub":             publicKey,
    				"sa.key":             key,
    				"etcd/ca.crt":        caCert,
    				"etcd/ca.key":        caKey,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 31 21:49:21 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/storagebackend/factory/factory_test.go

    		HealthcheckTimeout: 5 * time.Second,
    	}
    	cfg.Transport.ServerList = client.Endpoints()
    	tests := []struct {
    		name string
    		want error
    	}{
    		{
    			name: "etcd ok",
    		},
    		{
    			name: "etcd down",
    			want: errors.New("etcd down"),
    		},
    	}
    	for _, tc := range tests {
    		t.Run(tc.name, func(t *testing.T) {
    
    			ready := make(chan struct{})
    
    			var counter uint64
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 29 15:58:10 UTC 2022
    - 12.1K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/util/users/users_linux_test.go

    		},
    		{
    			name: "existing valid users mapped to groups",
    			users: []*entry{
    				{name: "kubeadm-etcd", id: 100, gid: 102, shell: noshell},
    				{name: "kubeadm-kas", id: 101, gid: 103, shell: noshell},
    			},
    			groups: []*entry{
    				{name: "kubeadm-etcd", id: 102, userNames: []string{"kubeadm-etcd"}},
    				{name: "kubeadm-kas", id: 103, userNames: []string{"kubeadm-kas"}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 01 05:59:41 UTC 2022
    - 16.3K bytes
    - Viewed (0)
Back to top