Documentation ¶
Overview ¶
Package coderutil providers utilities for high-level operations on coder-sdk entities.
Index ¶
- func DefaultWorkspaceProvider(ctx context.Context, c coder.Client) (*coder.KubernetesProvider, error)
- func DialWorkspaceWsep(ctx context.Context, client coder.Client, workspace *coder.Workspace) (*websocket.Conn, error)
- func MakeImageMap(ctx context.Context, client coder.Client, workspaces []coder.Workspace) (map[string]*coder.Image, error)
- func ProviderByName(ctx context.Context, client coder.Client, name string) (*coder.KubernetesProvider, error)
- type WorkspaceTable
- type WorkspaceWithWorkspaceProvider
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func DefaultWorkspaceProvider ¶ added in v1.17.0
func DefaultWorkspaceProvider(ctx context.Context, c coder.Client) (*coder.KubernetesProvider, error)
DefaultWorkspaceProvider returns the default provider with which to create workspaces.
func DialWorkspaceWsep ¶ added in v1.20.0
func DialWorkspaceWsep(ctx context.Context, client coder.Client, workspace *coder.Workspace) (*websocket.Conn, error)
DialWorkspaceWsep dials the executor endpoint using the https://github.com/cdr/wsep message protocol. The proper workspace provider envproxy access URL is used.
Types ¶
type WorkspaceTable ¶ added in v1.20.0
type WorkspaceTable struct { Name string `table:"Name"` Image string `table:"Image"` CPU float32 `table:"vCPU"` MemoryGB float32 `table:"MemoryGB"` DiskGB int `table:"DiskGB"` Status string `table:"Status"` Provider string `table:"Provider"` CVM bool `table:"CVM"` }
WorkspaceTable defines an Workspace-like structure with associated entities composed in a human readable form.
func WorkspacesHumanTable ¶ added in v1.20.0
func WorkspacesHumanTable(ctx context.Context, client coder.Client, workspaces []coder.Workspace) ([]WorkspaceTable, error)
WorkspacesHumanTable performs the composition of each Workspace with its associated ProviderName and ImageRepo.
type WorkspaceWithWorkspaceProvider ¶ added in v1.20.0
type WorkspaceWithWorkspaceProvider struct { Workspace coder.Workspace WorkspaceProvider coder.KubernetesProvider }
WorkspaceWithWorkspaceProvider composes an Workspace entity with its associated WorkspaceProvider.
func WorkspacesWithProvider ¶ added in v1.20.0
func WorkspacesWithProvider(ctx context.Context, client coder.Client, workspaces []coder.Workspace) ([]WorkspaceWithWorkspaceProvider, error)
WorkspacesWithProvider performs the composition of each Workspace with its associated WorkspaceProvider.