Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 106 for Getcwd (0.2 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/options/etcd.go

    	fs.StringSliceVar(&s.StorageConfig.Transport.ServerList, "etcd-servers", s.StorageConfig.Transport.ServerList,
    		"List of etcd servers to connect with (scheme://ip:port), comma separated.")
    
    	fs.StringVar(&s.StorageConfig.Prefix, "etcd-prefix", s.StorageConfig.Prefix,
    		"The prefix to prepend to all resource paths in etcd.")
    
    	fs.StringVar(&s.StorageConfig.Transport.KeyFile, "etcd-keyfile", s.StorageConfig.Transport.KeyFile,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 15:02:16 UTC 2024
    - 20K bytes
    - Viewed (0)
  2. cmd/iam-etcd-store.go

    	jsoniter "github.com/json-iterator/go"
    	"github.com/minio/minio-go/v7/pkg/set"
    	"github.com/minio/minio/internal/config"
    	"github.com/minio/minio/internal/kms"
    	"github.com/puzpuzpuz/xsync/v3"
    	"go.etcd.io/etcd/api/v3/mvccpb"
    	etcd "go.etcd.io/etcd/client/v3"
    )
    
    var defaultContextTimeout = 30 * time.Second
    
    func etcdKvsToSet(prefix string, kvs []*mvccpb.KeyValue) set.StringSet {
    	users := set.NewStringSet()
    	for _, kv := range kvs {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/phases/controlplane/volumes_test.go

    				{
    					Name:      "etcd-certs-0",
    					MountPath: "/var/lib/certs/etcd",
    					ReadOnly:  true,
    				},
    			},
    		},
    		{
    			name: "One file + two files in separate dirs",
    			ca:   "/etc/certs/etcd/my-etcd-ca.crt",
    			cert: "/var/lib/certs/etcd/my-etcd.crt",
    			key:  "/var/lib/certs/etcd/my-etcd.key",
    			vol: []v1.Volume{
    				{
    					Name: "etcd-certs-0",
    					VolumeSource: v1.VolumeSource{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 09:33:18 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/phases/etcd/local.go

    	klog.V(1).Info("[etcd] Checking etcd cluster health")
    
    	// creates an etcd client that connects to all the local/stacked etcd members
    	klog.V(1).Info("creating etcd client that connects to etcd pods")
    	etcdClient, err := etcdutil.NewFromCluster(client, certificatesDir)
    	if err != nil {
    		return err
    	}
    
    	// Checking health state
    	err = etcdClient.CheckClusterHealth()
    	if err != nil {
    		return errors.Wrap(err, "etcd cluster is not healthy")
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 14:07:27 UTC 2024
    - 13.8K bytes
    - Viewed (1)
  5. staging/src/k8s.io/apiserver/pkg/server/options/etcd_test.go

    		skipHealth        bool
    	}{
    		{
    			name:              "Readyz should have etcd-readiness check",
    			wantReadyzChecks:  []string{"etcd", "etcd-readiness"},
    			wantHealthzChecks: []string{"etcd"},
    			wantLivezChecks:   []string{"etcd"},
    		},
    		{
    			name:              "skip health, Readyz should not have etcd-readiness check",
    			wantReadyzChecks:  nil,
    			wantHealthzChecks: nil,
    			wantLivezChecks:   nil,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/phases/etcd/local_test.go

        volumeMounts:
        - mountPath: %s/etcd
          name: etcd-data
        - mountPath: /etcd
          name: etcd-certs
      hostNetwork: true
      priority: 2000001000
      priorityClassName: system-node-critical
      securityContext:
        seccompProfile:
          type: RuntimeDefault
      volumes:
      - hostPath:
          path: /etcd
          type: DirectoryOrCreate
        name: etcd-certs
      - hostPath:
          path: %s/etcd
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 14:07:27 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/phases/upgrade/staticpods.go

    		if _, err := oldEtcdClient.WaitForClusterAvailable(retries, retryInterval); err != nil {
    			fmt.Printf("[upgrade/etcd] Failed to healthcheck previous etcd: %v\n", err)
    			// Nothing else left to try to recover etcd cluster
    			return true, errors.Wrapf(err, "fatal error rolling back local etcd cluster manifest, the backup of etcd database is stored here:(%s)", backupEtcdDir)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 10:07:41 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  8. cluster/images/etcd/Makefile

    		curl -sSL --retry 5 https://github.com/etcd-io/etcd/releases/download/v$$version/etcd-v$$version-windows-amd64.zip -o etcd-v$$version-windows-amd64.zip; \
    		unzip -q -d $$etcd_release_tmp_dir etcd-v$$version-windows-amd64.zip; \
    		rm etcd-v$$version-windows-amd64.zip; \
    		$(BIN_INSTALL) $$etcd_release_tmp_dir/etcd-v$$version-windows-amd64/etcd.exe $$etcd_release_tmp_dir/etcd-v$$version-windows-amd64/etcdctl.exe $(TEMP_DIR)/; \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  9. hack/unwanted-dependencies.json

            "go.etcd.io/etcd/client/v3",
            "go.etcd.io/etcd/server/v3",
            "k8s.io/apiserver"
          ],
          "github.com/grpc-ecosystem/grpc-gateway": [
            "go.etcd.io/etcd/api/v3",
            "go.etcd.io/etcd/server/v3"
          ],
          "github.com/json-iterator/go": [
            "github.com/prometheus/client_golang",
            "go.etcd.io/etcd/client/v2",
            "go.etcd.io/etcd/server/v3",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 13 12:31:38 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  10. build/dependencies.yaml

          match: gcr.io/etcd-development/etcd
        - path: test/utils/image/manifest.go
          match: configs\[Etcd\] = Config{list\.GcEtcdRegistry, "etcd", "\d+\.\d+.\d+(-(alpha|beta|rc).\d+)?(-\d+)?"}
    
      - name: "etcd-image"
        version: 3.5.14
        refPaths:
        - path: cluster/images/etcd/Makefile
          match: BUNDLED_ETCD_VERSIONS\?|LATEST_ETCD_VERSION\?
        - path: cluster/images/etcd/migrate/options.go
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 12.3K bytes
    - Viewed (0)
Back to top