Documentation
¶
Index ¶
- Constants
- func NewGRPCServer(service Service) *grpcServer
- type API
- type Client
- func (c *Client) CancelPortForward(ctx context.Context, id string)
- func (c *Client) Close() error
- func (c *Client) Create(ctx context.Context, object *unstructured.Unstructured) error
- func (c *Client) CreateLink(ctx context.Context, key store.Key) (LinkResponse, error)
- func (c *Client) Delete(ctx context.Context, key store.Key) error
- func (c *Client) ForceFrontendUpdate(ctx context.Context) error
- func (c *Client) Get(ctx context.Context, key store.Key) (*unstructured.Unstructured, error)
- func (c *Client) List(ctx context.Context, key store.Key) (*unstructured.UnstructuredList, error)
- func (c *Client) ListNamespaces(ctx context.Context) (NamespacesResponse, error)
- func (c *Client) PortForward(ctx context.Context, req PortForwardRequest) (PortForwardResponse, error)
- func (c *Client) SendAlert(ctx context.Context, clientID string, alert action.Alert) error
- func (c *Client) SendEvent(ctx context.Context, clientID string, eventName event.EventType, ...) error
- func (c *Client) Update(ctx context.Context, object *unstructured.Unstructured) error
- type ClientOption
- type DashboardConnection
- type DashboardMetadataKey
- type FrontendProxy
- type FrontendUpdateController
- type GRPCService
- func (s *GRPCService) CancelPortForward(ctx context.Context, id string)
- func (s *GRPCService) Create(ctx context.Context, object *unstructured.Unstructured) error
- func (s *GRPCService) CreateLink(_ context.Context, key store.Key) (LinkResponse, error)
- func (s *GRPCService) Delete(ctx context.Context, key store.Key) error
- func (s *GRPCService) ForceFrontendUpdate(ctx context.Context) error
- func (s *GRPCService) Get(ctx context.Context, key store.Key) (*unstructured.Unstructured, error)
- func (s *GRPCService) List(ctx context.Context, key store.Key) (*unstructured.UnstructuredList, error)
- func (s *GRPCService) ListNamespaces(ctx context.Context) (NamespacesResponse, error)
- func (s *GRPCService) PortForward(ctx context.Context, req PortForwardRequest) (PortForwardResponse, error)
- func (s *GRPCService) SendAlert(ctx context.Context, clientID string, alert action.Alert) error
- func (s *GRPCService) SendEvent(ctx context.Context, clientID string, eventName event.EventType, ...) error
- func (s *GRPCService) Update(ctx context.Context, object *unstructured.Unstructured) error
- type LinkResponse
- type NamespacesResponse
- type PortForwardRequest
- type PortForwardResponse
- type Service
Constants ¶
const MaxMessageSize int = 1024 * 1024 * 16
Variables ¶
This section is empty.
Functions ¶
func NewGRPCServer ¶ added in v0.14.0
func NewGRPCServer(service Service) *grpcServer
Types ¶
type API ¶
type API interface {
// Addr is the address of the API service.
Addr() string
// Start starts the API. To stop the API, cancel the context.
Start(context.Context) error
}
API controls the dashboard API service.
type Client ¶
type Client struct {
DashboardConnection DashboardConnection
}
Client is a dashboard service API client.
func NewClient ¶
func NewClient(address string, options ...ClientOption) (*Client, error)
NewClient creates an instance of the API client. It requires the address of the API.
func (*Client) CancelPortForward ¶
CancelPortForward cancels a port forward.
func (*Client) Create ¶ added in v0.12.0
func (c *Client) Create(ctx context.Context, object *unstructured.Unstructured) error
func (*Client) CreateLink ¶ added in v0.19.0
func (*Client) ForceFrontendUpdate ¶
ForceFrontendUpdate forces the frontend to update itself.
func (*Client) Get ¶
func (c *Client) Get(ctx context.Context, key store.Key) (*unstructured.Unstructured, error)
Get retrieves an object from the dashboard's objectStore.
func (*Client) List ¶
func (c *Client) List(ctx context.Context, key store.Key) (*unstructured.UnstructuredList, error)
List lists objects in the dashboard's object store.
func (*Client) ListNamespaces ¶ added in v0.11.0
func (c *Client) ListNamespaces(ctx context.Context) (NamespacesResponse, error)
ListNamespaces lists namespaces.
func (*Client) PortForward ¶
func (c *Client) PortForward(ctx context.Context, req PortForwardRequest) (PortForwardResponse, error)
PortForward creates a port forward.
func (*Client) SendEvent ¶ added in v0.23.0
func (c *Client) SendEvent(ctx context.Context, clientID string, eventName event.EventType, payload action.Payload) error
SendEvent sends an event
func (*Client) Update ¶
func (c *Client) Update(ctx context.Context, object *unstructured.Unstructured) error
Update updates an object in the store.
type ClientOption ¶
type ClientOption func(c *Client)
type DashboardConnection ¶
type DashboardConnection interface {
Close() error
Client() proto.DashboardClient
}
type DashboardMetadataKey ¶ added in v0.18.0
type DashboardMetadataKey string
DashboardMetadataKey is a type used for metadata keys passed by plugins
type FrontendProxy ¶
type FrontendProxy struct {
FrontendUpdateController FrontendUpdateController
}
FrontendProxy is a proxy for messaging the frontend.
func (*FrontendProxy) ForceFrontendUpdate ¶
func (proxy *FrontendProxy) ForceFrontendUpdate() error
ForceFrontendUpdate forces the frontend to update
type FrontendUpdateController ¶
type FrontendUpdateController interface {
ForceUpdate() error
}
FrontendUpdateController can control the frontend. ie. the web gui
type GRPCService ¶
type GRPCService struct {
ObjectStore store.Store
PortForwarder portforward.PortForwarder
FrontendProxy FrontendProxy
NamespaceInterface cluster.NamespaceInterface
WebsocketClientManager event.WSClientGetter
LinkGenerator octant.LinkGenerator
}
GRPCService is an implementation of the dashboard service based on GRPC.
func (*GRPCService) CancelPortForward ¶
func (s *GRPCService) CancelPortForward(ctx context.Context, id string)
CancelPortForward cancels a port forward
func (*GRPCService) Create ¶ added in v0.12.0
func (s *GRPCService) Create(ctx context.Context, object *unstructured.Unstructured) error
func (*GRPCService) CreateLink ¶ added in v0.19.0
func (s *GRPCService) CreateLink(_ context.Context, key store.Key) (LinkResponse, error)
func (*GRPCService) ForceFrontendUpdate ¶
func (s *GRPCService) ForceFrontendUpdate(ctx context.Context) error
func (*GRPCService) Get ¶
func (s *GRPCService) Get(ctx context.Context, key store.Key) (*unstructured.Unstructured, error)
Get retrieves an object.
func (*GRPCService) List ¶
func (s *GRPCService) List(ctx context.Context, key store.Key) (*unstructured.UnstructuredList, error)
List lists objects.
func (*GRPCService) ListNamespaces ¶ added in v0.11.0
func (s *GRPCService) ListNamespaces(ctx context.Context) (NamespacesResponse, error)
ListNamespaces lists namespaces
func (*GRPCService) PortForward ¶
func (s *GRPCService) PortForward(ctx context.Context, req PortForwardRequest) (PortForwardResponse, error)
PortForward creates a port forward.
func (*GRPCService) SendAlert ¶ added in v0.16.0
SendAlert sends an alert. This method is deprecated and will be removed in a future release
func (*GRPCService) Update ¶
func (s *GRPCService) Update(ctx context.Context, object *unstructured.Unstructured) error
type LinkResponse ¶ added in v0.19.0
type NamespacesResponse ¶ added in v0.11.0
type NamespacesResponse struct {
Namespaces []string
}
NamespacesResponse is a response from listing namespaces
type PortForwardRequest ¶
PortForwardRequest describes a port forward request.
type PortForwardResponse ¶
PortForwardResponse is the response from a port forward request.
type Service ¶
type Service interface {
List(ctx context.Context, key store.Key) (*unstructured.UnstructuredList, error)
Get(ctx context.Context, key store.Key) (*unstructured.Unstructured, error)
PortForward(ctx context.Context, req PortForwardRequest) (PortForwardResponse, error)
CancelPortForward(ctx context.Context, id string)
ListNamespaces(ctx context.Context) (NamespacesResponse, error)
Update(ctx context.Context, object *unstructured.Unstructured) error
Create(ctx context.Context, object *unstructured.Unstructured) error
Delete(ctx context.Context, key store.Key) error
ForceFrontendUpdate(ctx context.Context) error
SendAlert(ctx context.Context, clientID string, alert action.Alert) error
CreateLink(ctx context.Context, key store.Key) (LinkResponse, error)
SendEvent(ctx context.Context, clientID string, eventName event.EventType, payload action.Payload) error
}
Service is the dashboard service.