Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 104 for Getcwd (0.45 sec)

  1. cluster/gce/upgrade.sh

        echo "Alternatively, if you choose to allow an etcd upgrade that doesn't support downgrade,"
        echo "you might still be able to downgrade Kubernetes by pinning to the newer etcd version."
        echo "In all cases, it is strongly recommended to have an etcd backup before upgrading."
        echo
        if [ -t 0 ] && [ -t 1 ]; then
          read -r -p "Continue with default etcd version, which might upgrade etcd? [y/N] " confirm
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/util/pkiutil/pki_helpers.go

    }
    
    // GetEtcdPeerAltNames builds an AltNames object for generating the etcd peer certificate.
    // Hostname and `API.AdvertiseAddress` are included if the user chooses to promote the single node etcd cluster into a multi-node one (stacked etcd).
    // The user can override the listen address with `Etcd.ExtraArgs` and add SANs with `Etcd.PeerCertSANs`.
    func GetEtcdPeerAltNames(cfg *kubeadmapi.InitConfiguration) (*certutil.AltNames, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  3. src/cmd/vet/vet_test.go

    	})
    	if vetPathErr != nil {
    		t.Fatal(vetPathErr)
    	}
    	return vetExePath
    }
    
    var (
    	vetPathOnce sync.Once
    	vetExePath  string
    	vetPathErr  error
    )
    
    func vetCmd(t *testing.T, arg, pkg string) *exec.Cmd {
    	cmd := testenv.Command(t, testenv.GoToolPath(t), "vet", "-vettool="+vetPath(t), arg, path.Join("cmd/vet/testdata", pkg))
    	cmd.Env = os.Environ()
    	return cmd
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 01:02:40 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  4. cmd/config-current.go

    		}
    	}
    
    	etcdCfg, err := etcd.LookupConfig(s[config.EtcdSubSys][config.Default], globalRootCAs)
    	if err != nil {
    		configLogIf(ctx, fmt.Errorf("Unable to initialize etcd config: %w", err))
    	}
    
    	if etcdCfg.Enabled {
    		bootstrapTraceMsg("initialize etcd store")
    		globalEtcdClient, err = etcd.New(etcdCfg)
    		if err != nil {
    			configLogIf(ctx, fmt.Errorf("Unable to initialize etcd config: %w", err))
    		}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 08:14:58 UTC 2024
    - 30.8K bytes
    - Viewed (0)
  5. pkg/controlplane/apiserver/config.go

    	genericConfig.Version = &kubeVersion
    
    	if genericConfig.EgressSelector != nil {
    		s.Etcd.StorageConfig.Transport.EgressLookup = genericConfig.EgressSelector.Lookup
    	}
    	if utilfeature.DefaultFeatureGate.Enabled(genericfeatures.APIServerTracing) {
    		s.Etcd.StorageConfig.Transport.TracerProvider = genericConfig.TracerProvider
    	} else {
    		s.Etcd.StorageConfig.Transport.TracerProvider = noopoteltrace.NewTracerProvider()
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/apis/kubeadm/validation/validation.go

    		}
    		// If the cert and key are specified, require the CA as well
    		if e.External.CertFile != "" && e.External.KeyFile != "" && e.External.CAFile == "" {
    			allErrs = append(allErrs, field.Invalid(externalPath, "", "setting .Etcd.External.CertFile and .Etcd.External.KeyFile requires .Etcd.External.CAFile"))
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  7. cmd/globals.go

    	polplugin "github.com/minio/minio/internal/config/policy/plugin"
    	"github.com/minio/minio/internal/config/storageclass"
    	"github.com/minio/minio/internal/config/subnet"
    	xhttp "github.com/minio/minio/internal/http"
    	etcd "go.etcd.io/etcd/client/v3"
    
    	levent "github.com/minio/minio/internal/config/lambda/event"
    	"github.com/minio/minio/internal/event"
    	"github.com/minio/minio/internal/pubsub"
    	"github.com/minio/pkg/v3/certs"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  8. go.mod

    	github.com/tidwall/gjson v1.17.1
    	github.com/tinylib/msgp v1.1.9
    	github.com/valyala/bytebufferpool v1.0.0
    	github.com/xdg/scram v1.0.5
    	github.com/zeebo/xxh3 v1.0.2
    	go.etcd.io/etcd/api/v3 v3.5.14
    	go.etcd.io/etcd/client/v3 v3.5.14
    	go.uber.org/atomic v1.11.0
    	go.uber.org/zap v1.27.0
    	goftp.io/server/v2 v2.0.1
    	golang.org/x/crypto v0.24.0
    	golang.org/x/exp v0.0.0-20240604190554-fc45aab8b7f8
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:53:53 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  9. cmd/kube-apiserver/app/testing/testserver.go

    	"crypto/x509/pkix"
    	"encoding/pem"
    	"fmt"
    	"math"
    	"math/big"
    	"net"
    	"os"
    	"path/filepath"
    	"runtime"
    	"testing"
    	"time"
    
    	"github.com/spf13/pflag"
    	"go.etcd.io/etcd/client/pkg/v3/transport"
    	clientv3 "go.etcd.io/etcd/client/v3"
    	"google.golang.org/grpc"
    
    	"k8s.io/apimachinery/pkg/api/errors"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	utilerrors "k8s.io/apimachinery/pkg/util/errors"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/etcd3/store.go

    limitations under the License.
    */
    
    package etcd3
    
    import (
    	"bytes"
    	"context"
    	"errors"
    	"fmt"
    	"path"
    	"reflect"
    	"strings"
    	"time"
    
    	clientv3 "go.etcd.io/etcd/client/v3"
    	"go.opentelemetry.io/otel/attribute"
    
    	apierrors "k8s.io/apimachinery/pkg/api/errors"
    	"k8s.io/apimachinery/pkg/api/meta"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 11:56:42 UTC 2024
    - 35.2K bytes
    - Viewed (0)
Back to top