etcd

package
v0.5.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 10, 2026 License: Apache-2.0 Imports: 14 Imported by: 0

Documentation

Overview

Package etcd provides a component for managing an etcd server using containerd. The component uses host networking with non-default ports (12379 for client, 12380 for peer) to avoid conflicts with existing etcd installations.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type EtcdComponent

type EtcdComponent struct {
	*base.BaseComponent
	// contains filtered or unexported fields
}

func NewEtcdComponent

func NewEtcdComponent(log *slog.Logger, cc *containerd.Client, namespace, dataPath string) *EtcdComponent

func (*EtcdComponent) ClientEndpoint

func (e *EtcdComponent) ClientEndpoint() string

func (*EtcdComponent) PeerEndpoint

func (e *EtcdComponent) PeerEndpoint() string

func (*EtcdComponent) Start

func (e *EtcdComponent) Start(ctx context.Context, config EtcdConfig) error

func (*EtcdComponent) TLSEnabled added in v0.4.0

func (e *EtcdComponent) TLSEnabled() bool

TLSEnabled returns whether TLS is enabled for client connections.

type EtcdConfig

type EtcdConfig struct {
	Name           string
	DataDir        string
	ClientPort     int
	HTTPClientPort int
	PeerPort       int
	InitialToken   string
	ClusterState   string
	TLS            *TLSConfig // If set, enables mTLS for client connections
}

type TLSConfig added in v0.4.0

type TLSConfig struct {
	CertsDir string // Directory containing ca.crt, server.crt, server.key
}

TLSConfig holds TLS certificate paths for etcd mTLS. When configured, etcd will require client certificate authentication.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL