Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 558 for etcd3 (0.14 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/etcd3/healthcheck.go

    limitations under the License.
    */
    
    package etcd3
    
    import (
    	"encoding/json"
    	"fmt"
    )
    
    // etcdHealth encodes data returned from etcd /healthz handler.
    type etcdHealth struct {
    	// Note this has to be public so the json library can modify it.
    	Health string `json:"health"`
    }
    
    // EtcdHealthCheck decodes data returned from etcd /healthz handler.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 13 08:10:29 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  2. cluster/images/etcd/migrate/migrate_client.go

    	)
    }
    
    // Migrate upgrades a 'etcd2' storage version data directory to a 'etcd3' storage version
    // data directory.
    func (e *CombinedEtcdClient) Migrate(version *EtcdVersion) error {
    	// We cannot use etcd/clientv3 to make this call as it is implemented in etcd/etcdctl.
    	if version.Major != 3 {
    		return fmt.Errorf("etcd 3.x required but got version '%s'", version)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 15 13:53:06 UTC 2021
    - 6.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/etcd3/event.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package etcd3
    
    import (
    	"fmt"
    	"go.etcd.io/etcd/api/v3/mvccpb"
    	clientv3 "go.etcd.io/etcd/client/v3"
    )
    
    type event struct {
    	key              string
    	value            []byte
    	prevValue        []byte
    	rev              int64
    	isDeleted        bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 25 10:26:38 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  4. 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)
  5. staging/src/k8s.io/apiserver/pkg/server/routes/metrics.go

    	apimetrics "k8s.io/apiserver/pkg/endpoints/metrics"
    	"k8s.io/apiserver/pkg/server/mux"
    	cachermetrics "k8s.io/apiserver/pkg/storage/cacher/metrics"
    	etcd3metrics "k8s.io/apiserver/pkg/storage/etcd3/metrics"
    	flowcontrolmetrics "k8s.io/apiserver/pkg/util/flowcontrol/metrics"
    	peerproxymetrics "k8s.io/apiserver/pkg/util/peerproxy/metrics"
    	"k8s.io/component-base/metrics/legacyregistry"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 16 02:06:01 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. 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)
  7. staging/src/k8s.io/apiserver/pkg/storage/etcd3/event_test.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package etcd3
    
    import (
    	"github.com/stretchr/testify/assert"
    	"github.com/stretchr/testify/require"
    	"go.etcd.io/etcd/api/v3/mvccpb"
    	clientv3 "go.etcd.io/etcd/client/v3"
    	"testing"
    )
    
    func TestParseEvent(t *testing.T) {
    	for _, tc := range []struct {
    		name          string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 15 13:53:06 UTC 2021
    - 2.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/etcd3/latency_tracker.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package etcd3
    
    import (
    	"context"
    	"time"
    
    	clientv3 "go.etcd.io/etcd/client/v3"
    	endpointsrequest "k8s.io/apiserver/pkg/endpoints/request"
    )
    
    // NewETCDLatencyTracker returns an implementation of
    // clientv3.KV that times the calls from the specified
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/etcd3/errors.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package etcd3
    
    import (
    	"k8s.io/apimachinery/pkg/api/errors"
    	"k8s.io/apiserver/pkg/storage"
    
    	etcdrpc "go.etcd.io/etcd/api/v3/v3rpc/rpctypes"
    	utilruntime "k8s.io/apimachinery/pkg/util/runtime"
    )
    
    func interpretWatchError(err error) error {
    	switch {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 11 15:59:41 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  10. cluster/images/etcd/README.md

    Provides docker images containing etcd and etcdctl binaries for multiple etcd
    version as well as a migration operator utility for upgrading and downgrading
    etcd--it's data directory in particular--to a target version.
    
    #### Versioning
    
    Each `registry.k8s.io/etcd` docker image is tagged with an version string of the form
    `<etcd-version>-<image-revision>`, e.g. `3.0.17-0`.  The etcd version is the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 27 12:41:39 UTC 2023
    - 3K bytes
    - Viewed (0)
Back to top