Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 213 for Getcwd (0.13 sec)

  1. hack/make-rules/test-integration.sh

        return
      fi
      kube::log::status "Cleaning up etcd"
      kube::etcd::cleanup
      CLEANUP_REQUIRED=
      kube::log::status "Integration test cleanup complete"
    }
    
    runTests() {
      kube::log::status "Starting etcd instance"
      CLEANUP_REQUIRED=1
      kube::etcd::start
      # shellcheck disable=SC2034
      local ETCD_SCRAPE_PID # Set in kube::etcd::start_scraping, used in cleanup
      kube::etcd::start_scraping
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:57 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. pkg/registry/core/service/allocator/storage/storage.go

    	resource schema.GroupResource
    
    	destroyFn func()
    }
    
    // Etcd implements allocator.Interface and rangeallocation.RangeRegistry
    var _ allocator.Interface = &Etcd{}
    var _ rangeallocation.RangeRegistry = &Etcd{}
    
    // NewEtcd returns an allocator that is backed by Etcd and can manage
    // persisting the snapshot state of allocation after each allocation is made.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 09:23:05 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/images/images.go

    }
    
    // GetEtcdImage generates and returns the image for etcd
    func GetEtcdImage(cfg *kubeadmapi.ClusterConfiguration) string {
    	// Etcd uses default image repository by default
    	etcdImageRepository := cfg.ImageRepository
    	// unless an override is specified
    	if cfg.Etcd.Local != nil && cfg.Etcd.Local.ImageRepository != "" {
    		etcdImageRepository = cfg.Etcd.Local.ImageRepository
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 06:33:37 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/images/images_test.go

    				ImageRepository:   "real.repo",
    				KubernetesVersion: testversion,
    				Etcd: kubeadmapi.Etcd{
    					Local: &kubeadmapi.LocalEtcd{},
    				},
    			},
    			expected: "real.repo/etcd:" + testEtcdVer.String(),
    		},
    		{
    			cfg: &kubeadmapi.ClusterConfiguration{
    				ImageRepository:   "real.repo",
    				KubernetesVersion: testversion,
    				Etcd: kubeadmapi.Etcd{
    					Local: &kubeadmapi.LocalEtcd{
    						ImageMeta: kubeadmapi.ImageMeta{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 06:33:37 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  5. pkg/api/testing/deep_copy_test.go

    						Path: "/mnt/master-pd/var/etcd",
    					},
    				},
    			},
    		},
    		Containers: []api.Container{
    			{
    				Name:  "etcd-container",
    				Image: "registry.k8s.io/etcd:2.0.9",
    				Command: []string{
    					"/usr/local/bin/etcd",
    					"--addr",
    					"127.0.0.1:2379",
    					"--bind-addr",
    					"127.0.0.1:2379",
    					"--data-dir",
    					"/var/etcd/data",
    				},
    				Ports: []api.ContainerPort{
    					{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 4.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/etcd3/testserver/test_server.go

    limitations under the License.
    */
    
    package testserver
    
    import (
    	"fmt"
    	"net"
    	"net/url"
    	"os"
    	"strconv"
    	"testing"
    	"time"
    
    	clientv3 "go.etcd.io/etcd/client/v3"
    	"go.etcd.io/etcd/server/v3/embed"
    	"go.uber.org/zap/zapcore"
    	"go.uber.org/zap/zaptest"
    	"google.golang.org/grpc"
    )
    
    // getAvailablePort returns a TCP port that is available for binding.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 06 11:40:40 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  7. helm/minio/templates/secrets.yaml

      rootPassword: {{ include "minio.root.password" . | b64enc | quote }}
      {{- if .Values.etcd.clientCert }}
      etcd_client.crt: {{ .Values.etcd.clientCert | toString | b64enc | quote }}
      {{- end }}
      {{- if .Values.etcd.clientCertKey }}
      etcd_client.key: {{ .Values.etcd.clientCertKey | toString | b64enc | quote }}
      {{- end }}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Apr 12 04:09:29 UTC 2023
    - 706 bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/go.mod

    	github.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2 // indirect
    	go.etcd.io/bbolt v1.3.9 // indirect
    	go.etcd.io/etcd/api/v3 v3.5.13 // 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
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:11 UTC 2024
    - 6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/go.mod

    	github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f
    	github.com/spf13/pflag v1.0.5
    	github.com/stretchr/testify v1.8.4
    	go.etcd.io/etcd/api/v3 v3.5.13
    	go.etcd.io/etcd/client/pkg/v3 v3.5.13
    	go.etcd.io/etcd/client/v3 v3.5.13
    	go.etcd.io/etcd/server/v3 v3.5.13
    	go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.46.0
    	go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.44.0
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:11 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/cmd/upgrade/common_test.go

    					ServiceSubnet: "10.96.0.1/12",
    				},
    				Etcd: kubeadmapi.Etcd{
    					External: &kubeadmapi.ExternalEtcd{
    						Endpoints: []string{"https://one-etcd-instance:2379"},
    					},
    				},
    			},
    			expectedBytes: []byte(`[upgrade/config] Configuration used:
    	apiServer: {}
    	apiVersion: ` + kubeadmapiv1.SchemeGroupVersion.String() + `
    	controllerManager: {}
    	dns: {}
    	etcd:
    	  external:
    	    caFile: ""
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 05:14:21 UTC 2024
    - 5.5K bytes
    - Viewed (0)
Back to top