Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 241 for etcd2 (0.05 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/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)
  3. 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)
  4. 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)
  5. 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)
  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. 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)
  8. cmd/kubeadm/app/util/etcd/etcd.go

    limitations under the License.
    */
    
    package etcd
    
    import (
    	"context"
    	"crypto/tls"
    	"fmt"
    	"net"
    	"net/url"
    	"path/filepath"
    	"strconv"
    	"strings"
    	"time"
    
    	"github.com/pkg/errors"
    	"go.etcd.io/etcd/api/v3/etcdserverpb"
    	"go.etcd.io/etcd/api/v3/v3rpc/rpctypes"
    	"go.etcd.io/etcd/client/pkg/v3/transport"
    	clientv3 "go.etcd.io/etcd/client/v3"
    	"google.golang.org/grpc"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 11:04:08 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  9. cluster/images/etcd-version-monitor/etcd-version-monitor.go

    	fs.StringVar(&etcdVersionScrapeURI, "etcd-version-scrape-uri", "http://localhost:2379/version", "URI to scrape etcd version info")
    	fs.StringVar(&etcdMetricsScrapeURI, "etcd-metrics-scrape-uri", "http://localhost:2379/metrics", "URI to scrape etcd metrics")
    	fs.DurationVar(&scrapeTimeout, "scrape-timeout", 15*time.Second, "Timeout for trying to get stats from etcd")
    }
    
    const (
    	namespace = "etcd" // For prefixing prometheus metrics
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Dec 16 06:50:02 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  10. 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)
Back to top