services

package
v0.2.2 Latest Latest
Warning

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

Go to latest
Published: Jan 17, 2024 License: MIT Imports: 1 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Client

type Client struct {
	// contains filtered or unexported fields
}

func New

func New(c HTTPClient) *Client

func (*Client) Find

func (c *Client) Find(ctx context.Context, req FindRequest) ([]FindResponse, error)

Find Directory index

func (*Client) Index

func (c *Client) Index(ctx context.Context, req IndexRequest) ([]map[string]interface{}, error)

Index Service list.

func (*Client) ServiceReload

func (c *Client) ServiceReload(ctx context.Context, req ServiceReloadRequest) (string, error)

ServiceReload Reload service. Falls back to restart if service cannot be reloaded.

func (*Client) ServiceRestart

func (c *Client) ServiceRestart(ctx context.Context, req ServiceRestartRequest) (string, error)

ServiceRestart Hard restart service. Use reload if you want to reduce interruptions.

func (*Client) ServiceStart

func (c *Client) ServiceStart(ctx context.Context, req ServiceStartRequest) (string, error)

ServiceStart Start service.

func (*Client) ServiceState

func (c *Client) ServiceState(ctx context.Context, req ServiceStateRequest) (map[string]interface{}, error)

ServiceState Read service properties

func (*Client) ServiceStop

func (c *Client) ServiceStop(ctx context.Context, req ServiceStopRequest) (string, error)

ServiceStop Stop service.

type FindRequest

type FindRequest struct {
	Node    string  `url:"node" json:"node"`       // The cluster node name.
	Service Service `url:"service" json:"service"` // Service ID

}

type FindResponse

type FindResponse struct {
	Subdir string `url:"subdir" json:"subdir"`
}

type HTTPClient

type HTTPClient interface {
	Do(context.Context, string, string, interface{}, interface{}) error
}

type IndexRequest

type IndexRequest struct {
	Node string `url:"node" json:"node"` // The cluster node name.

}

type Service added in v0.0.15

type Service string
const (
	Service_CHRONY            Service = "chrony"
	Service_COROSYNC          Service = "corosync"
	Service_CRON              Service = "cron"
	Service_KSMTUNED          Service = "ksmtuned"
	Service_POSTFIX           Service = "postfix"
	Service_PVE_CLUSTER       Service = "pve-cluster"
	Service_PVE_FIREWALL      Service = "pve-firewall"
	Service_PVE_HA_CRM        Service = "pve-ha-crm"
	Service_PVE_HA_LRM        Service = "pve-ha-lrm"
	Service_PVEDAEMON         Service = "pvedaemon"
	Service_PVEFW_LOGGER      Service = "pvefw-logger"
	Service_PVEPROXY          Service = "pveproxy"
	Service_PVESCHEDULER      Service = "pvescheduler"
	Service_PVESTATD          Service = "pvestatd"
	Service_SPICEPROXY        Service = "spiceproxy"
	Service_SSHD              Service = "sshd"
	Service_SYSLOG            Service = "syslog"
	Service_SYSTEMD_JOURNALD  Service = "systemd-journald"
	Service_SYSTEMD_TIMESYNCD Service = "systemd-timesyncd"
)

func PtrService added in v0.0.15

func PtrService(i Service) *Service

type ServiceReloadRequest

type ServiceReloadRequest struct {
	Node    string  `url:"node" json:"node"`       // The cluster node name.
	Service Service `url:"service" json:"service"` // Service ID

}

type ServiceRestartRequest

type ServiceRestartRequest struct {
	Node    string  `url:"node" json:"node"`       // The cluster node name.
	Service Service `url:"service" json:"service"` // Service ID

}

type ServiceStartRequest

type ServiceStartRequest struct {
	Node    string  `url:"node" json:"node"`       // The cluster node name.
	Service Service `url:"service" json:"service"` // Service ID

}

type ServiceStateRequest

type ServiceStateRequest struct {
	Node    string  `url:"node" json:"node"`       // The cluster node name.
	Service Service `url:"service" json:"service"` // Service ID

}

type ServiceStopRequest

type ServiceStopRequest struct {
	Node    string  `url:"node" json:"node"`       // The cluster node name.
	Service Service `url:"service" json:"service"` // Service ID

}

Jump to

Keyboard shortcuts

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