Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 166 for etcd2 (0.03 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. staging/src/k8s.io/apiserver/pkg/storage/storagebackend/config.go

    	"k8s.io/apimachinery/pkg/runtime/schema"
    	"k8s.io/apiserver/pkg/server/egressselector"
    	"k8s.io/apiserver/pkg/storage/etcd3"
    	"k8s.io/apiserver/pkg/storage/value"
    	flowcontrolrequest "k8s.io/apiserver/pkg/util/flowcontrol/request"
    )
    
    const (
    	StorageTypeUnset = ""
    	StorageTypeETCD2 = "etcd2"
    	StorageTypeETCD3 = "etcd3"
    
    	DefaultCompactInterval      = 5 * time.Minute
    	DefaultDBMetricPollInterval = 30 * time.Second
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  3. cluster/images/etcd/migrate/options.go

    		"version of etcd to migrate to. Format must be <major>.<minor>.<patch>. If unset fallbacks to TARGET_VERSION env.")
    	flags.StringVar(&opts.targetStorage, "target-storage", "",
    		"storage version of etcd to migrate to, one of: etcd2, etcd3. If unset fallbacks to TARGET_STORAGE env.")
    	flags.StringVar(&opts.etcdServerArgs, "etcd-server-extra-args", "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 09:59:52 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/apis/kubeadm/validation/validation_test.go

    	var tests = []struct {
    		name           string
    		etcd           *kubeadmapi.Etcd
    		expectedErrors bool
    	}{
    		{
    			name:           "either .Etcd.Local or .Etcd.External is required",
    			etcd:           &kubeadmapi.Etcd{},
    			expectedErrors: true,
    		},
    		{
    			name: ".Etcd.Local and .Etcd.External are mutually exclusive",
    			etcd: &kubeadmapi.Etcd{
    				Local: &kubeadmapi.LocalEtcd{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/etcd3/store.go

    See the License for the specific language governing permissions and
    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"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 11:56:42 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  6. cluster/gce/config-test.sh

    # are pre-installed in the image. Note that currently this logic
    # is only supported in trusty or GCI.
    TEST_CLUSTER=${TEST_CLUSTER:-true}
    
    # Storage backend. 'etcd2' and 'etcd3' are supported.
    STORAGE_BACKEND=${STORAGE_BACKEND:-}
    # Storage media type: application/json and application/vnd.kubernetes.protobuf are supported.
    STORAGE_MEDIA_TYPE=${STORAGE_MEDIA_TYPE:-}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 17:20:24 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/storagebackend/factory/etcd3.go

    	"log"
    	"math/rand"
    	"net"
    	"net/url"
    	"os"
    	"path"
    	"strings"
    	"sync"
    	"time"
    
    	grpcprom "github.com/grpc-ecosystem/go-grpc-prometheus"
    	"go.etcd.io/etcd/client/pkg/v3/logutil"
    	"go.etcd.io/etcd/client/pkg/v3/transport"
    	clientv3 "go.etcd.io/etcd/client/v3"
    	"go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc"
    	"go.uber.org/zap"
    	"go.uber.org/zap/zapcore"
    	"golang.org/x/time/rate"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 07:56:39 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  8. cluster/gce/manifests/etcd.manifest

        "resources": {
          "requests": {
            "cpu": {{ cpulimit }}
          }
        },
        "command": [
                  "/bin/sh",
                  "-c",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/options/etcd.go

    		"SSL key file used to secure etcd communication.")
    
    	fs.StringVar(&s.StorageConfig.Transport.CertFile, "etcd-certfile", s.StorageConfig.Transport.CertFile,
    		"SSL certification file used to secure etcd communication.")
    
    	fs.StringVar(&s.StorageConfig.Transport.TrustedCAFile, "etcd-cafile", s.StorageConfig.Transport.TrustedCAFile,
    		"SSL Certificate Authority file used to secure etcd communication.")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 15:02:16 UTC 2024
    - 20K bytes
    - Viewed (0)
  10. hack/lib/etcd.sh

      version=$(etcd --version | grep Version | head -n 1 | cut -d " " -f 3)
      if [[ $(kube::etcd::version "${ETCD_VERSION}") -gt $(kube::etcd::version "${version}") ]]; then
       export PATH=${KUBE_ROOT}/third_party/etcd:${PATH}
       hash etcd
       echo "${PATH}"
       version=$(etcd --version | grep Version | head -n 1 | cut -d " " -f 3)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 6.8K bytes
    - Viewed (0)
Back to top