Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 557 for etcd2 (0.07 sec)

  1. 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)
  2. 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)
  3. 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)
  4. CHANGELOG/CHANGELOG-1.6.md

    from writing to etcd during an etcd2 -> etcd3 migration.  HA installations cannot
    be migrated at the current time using the official Kubernetes procedure.
    
    1.6 will also default to protobuf encoding if using etcd3.  **This change is
    irreversible.**  To rollback, you must restore from a backup made before the
    protobuf/etcd3 switch, and any changes since the backup will be lost.  As 1.5
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 304K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.13.md

      - The deprecated `--etcd-quorum-read` flag has been removed. Quorum reads are now always enabled when fetching data from etcd. Remove the `--etcd-quorum-read` flag from kube-apiserver invocations before upgrading.
    - kube-controller-manager
      - The deprecated `--insecure-experimental-approve-all-kubelet-csrs-for-group` flag has been removed.
    - kubelet
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 273.1K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. pkg/registry/registrytest/etcd.go

    	"k8s.io/apiserver/pkg/server/options"
    	serverstorage "k8s.io/apiserver/pkg/server/storage"
    	etcd3testing "k8s.io/apiserver/pkg/storage/etcd3/testing"
    	"k8s.io/apiserver/pkg/storage/storagebackend"
    	"k8s.io/kubernetes/pkg/kubeapiserver"
    )
    
    // NewEtcdStorage is for testing.  It configures the etcd storage for a bogus resource; the test must not care.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 16 03:10:18 UTC 2023
    - 1.9K 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