Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 422 for etcd2 (0.12 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/storage/storage_codec.go

    		// base64-wrapped universal deserializer as a last resort.
    		// this allows reading base64-encoded protobuf, which should only exist if etcd2+protobuf was used at some point.
    		// data written that way could exist in etcd2, or could have been migrated to etcd3.
    		// TODO: flag this type of data if we encounter it, require migration (read to decode, write to persist using a supported encoder), and remove in 1.8
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Nov 05 15:03:23 UTC 2022
    - 3.8K bytes
    - Viewed (0)
  2. docs/federation/lookup/README.md

    > cluster1
    
    ```sh
    export MINIO_ETCD_ENDPOINTS="http://remote-etcd1:2379,http://remote-etcd2:4001"
    export MINIO_DOMAIN=domain.com
    export MINIO_PUBLIC_IPS=44.35.2.1,44.35.2.2,44.35.2.3,44.35.2.4
    minio server http://rack{1...4}.host{1...4}.domain.com/mnt/export{1...32}
    ```
    
    > cluster2
    
    ```sh
    export MINIO_ETCD_ENDPOINTS="http://remote-etcd1:2379,http://remote-etcd2:4001"
    export MINIO_DOMAIN=domain.com
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 4K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. cluster/gce/config-default.sh

    # Optional: if set to true kube-up will automatically check for existing resources and clean them up.
    KUBE_UP_AUTOMATIC_CLEANUP=${KUBE_UP_AUTOMATIC_CLEANUP:-false}
    
    # Storage backend. 'etcd2' supported, 'etcd3' experimental.
    STORAGE_BACKEND=${STORAGE_BACKEND:-}
    
    # Networking plugin specific settings.
    NETWORK_PROVIDER="${NETWORK_PROVIDER:-kubenet}" # none, kubenet
    
    # Network Policy plugin specific settings.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 16 20:16:32 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  10. 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)
Back to top