Documentation
¶
Overview ¶
Package starlark provides starlark builtins to be used in the diagnostics script.
Index ¶
- Constants
- func CapaProviderFn(thread *starlark.Thread, _ *starlark.Builtin, args starlark.Tuple, ...) (starlark.Value, error)
- func CapvProviderFn(thread *starlark.Thread, _ *starlark.Builtin, args starlark.Tuple, ...) (starlark.Value, error)
- func GetConstructor(val starlark.Value) (string, error)
- func GoToStarlarkValue(val interface{}) (starlark.Value, error)
- func KcpProviderFn(thread *starlark.Thread, _ *starlark.Builtin, args starlark.Tuple, ...) (starlark.Value, error)
- func KubeCaptureFn(thread *starlark.Thread, _ *starlark.Builtin, args starlark.Tuple, ...) (starlark.Value, error)
- func KubeConfigFn(_ *starlark.Thread, _ *starlark.Builtin, args starlark.Tuple, ...) (starlark.Value, error)
- func KubeExecFn(thread *starlark.Thread, _ *starlark.Builtin, args starlark.Tuple, ...) (starlark.Value, error)
- func KubeGetFn(thread *starlark.Thread, _ *starlark.Builtin, args starlark.Tuple, ...) (starlark.Value, error)
- func KubeNodesProviderFn(thread *starlark.Thread, _ *starlark.Builtin, args starlark.Tuple, ...) (starlark.Value, error)
- func KubePortForwardrFn(thread *starlark.Thread, _ *starlark.Builtin, args starlark.Tuple, ...) (starlark.Value, error)
- func SetDefaultsFunc(thread *starlark.Thread, _ *starlark.Builtin, args starlark.Tuple, ...) (starlark.Value, error)
- func SshConfigFn(thread *starlark.Thread, _ *starlark.Builtin, args starlark.Tuple, ...) (starlark.Value, error)
- type Executor
- type GoValue
- func (v *GoValue) ToDict() (*starlark.Dict, error)
- func (v *GoValue) ToList() (*starlark.List, error)
- func (v *GoValue) ToStarlarkStruct(constructorName string) (*starlarkstruct.Struct, error)
- func (v *GoValue) ToStarlarkValue() (starlark.Value, error)
- func (v *GoValue) ToStringDict() (starlark.StringDict, error)
- func (v *GoValue) ToTuple() (starlark.Tuple, error)
- func (v *GoValue) Value() interface{}
Constants ¶
const TunnelHost = "localhost"
const UnknownDefaultErrStr = "unknown value to be set as default"
Variables ¶
This section is empty.
Functions ¶
func CapaProviderFn ¶
func CapaProviderFn(thread *starlark.Thread, _ *starlark.Builtin, args starlark.Tuple, kwargs []starlark.Tuple) (starlark.Value, error)
CapaProviderFn is a built-in starlark function that collects compute resources from a k8s cluster Starlark format: capa_provider(kube_config=kube_config(), ssh_config=ssh_config()[workload_cluster=<name>, namespace=<namespace>, nodes=["foo", "bar], labels=["bar", "baz"]])
func CapvProviderFn ¶
func CapvProviderFn(thread *starlark.Thread, _ *starlark.Builtin, args starlark.Tuple, kwargs []starlark.Tuple) (starlark.Value, error)
CapvProviderFn is a built-in starlark function that collects compute resources from a k8s cluster Starlark format: capv_provider(kube_config=kube_config(), ssh_config=ssh_config()[workload_cluster=<name>, namespace=<namespace>, nodes=["foo", "bar], labels=["bar", "baz"]])
func GoToStarlarkValue ¶
GoToStarlarkValue converts Go value val to its Starlark value/type. It supports basic numeric types, string, bool, and slice/arrays.
func KcpProviderFn ¶ added in v0.4.2
func KcpProviderFn(thread *starlark.Thread, _ *starlark.Builtin, args starlark.Tuple, kwargs []starlark.Tuple) (starlark.Value, error)
KcpProviderFn is a built-in starlark function that creates a kubeconfig with all contexts for all KCP workspaces Starlark format: kcp_provider(kcp_admin_secret_namespace="kcp-system", kcp_admin_secret_name="admin-kubeconfig", [kcp_cert_secret_name="admin-cert-data", kube_config=kube_config(), tunnel_config=tunnel_config()]])
func KubeCaptureFn ¶
func KubeCaptureFn(thread *starlark.Thread, _ *starlark.Builtin, args starlark.Tuple, kwargs []starlark.Tuple) (starlark.Value, error)
KubeCaptureFn is the Starlark built-in for the fetching kubernetes objects and returns the result as a Starlark value containing the file path and error message, if any Starlark format: kube_capture(what="logs" [, groups="core", namespaces=["default"], kube_config=kube_config(), tunnel_config=tunnel_config])
func KubeConfigFn ¶
func KubeConfigFn(_ *starlark.Thread, _ *starlark.Builtin, args starlark.Tuple, kwargs []starlark.Tuple) (starlark.Value, error)
KubeConfigFn is built-in starlark function that wraps the kwargs into a dictionary value. The result is also added to the thread for other built-in to access. Starlark: kube_config(path=kubecf/path, [cluster_context=context_name])
func KubeExecFn ¶ added in v0.4.1
func KubeExecFn(thread *starlark.Thread, _ *starlark.Builtin, args starlark.Tuple, kwargs []starlark.Tuple) (starlark.Value, error)
KubeExecFn is a starlark built-in for executing command in target K8s pods
func KubeGetFn ¶
func KubeGetFn(thread *starlark.Thread, _ *starlark.Builtin, args starlark.Tuple, kwargs []starlark.Tuple) (starlark.Value, error)
KubeGetFn is a starlark built-in for the fetching kubernetes objects
func KubeNodesProviderFn ¶
func KubeNodesProviderFn(thread *starlark.Thread, _ *starlark.Builtin, args starlark.Tuple, kwargs []starlark.Tuple) (starlark.Value, error)
KubeNodesProviderFn is a built-in starlark function that collects compute resources from a k8s cluster Starlark format: kube_nodes_provider([kube_config=kube_config(), ssh_config=ssh_config(), names=["foo", "bar], labels=["bar", "baz"]])
func KubePortForwardrFn ¶ added in v0.4.2
func KubePortForwardrFn(thread *starlark.Thread, _ *starlark.Builtin, args starlark.Tuple, kwargs []starlark.Tuple) (starlark.Value, error)
KubePortForwardrFn is a built-in starlark function that collects compute resources from a k8s cluster Starlark format: kube_port_forward_config(service="bar", target_port=664, [namespace="foo"])
func SetDefaultsFunc ¶
func SetDefaultsFunc(thread *starlark.Thread, _ *starlark.Builtin, args starlark.Tuple, _ []starlark.Tuple) (starlark.Value, error)
SetDefaultsFunc is the built-in fn that saves the arguments to the local Starlark thread. Starlark format: set_defaults([ssh_config()][, kube_config()][, resources()])
func SshConfigFn ¶
func SshConfigFn(thread *starlark.Thread, _ *starlark.Builtin, args starlark.Tuple, kwargs []starlark.Tuple) (starlark.Value, error)
SshConfigFn is the backing built-in fn that saves and returns its argument as struct value. Starlark format: ssh_config(username=name[, port][, private_key_path][,max_retries][,conn_timeout][,jump_user][,jump_host])
Types ¶
type Executor ¶
type Executor struct {
// contains filtered or unexported fields
}
func (*Executor) AddPredeclared ¶
AddPredeclared predeclared
type GoValue ¶
type GoValue struct {
// contains filtered or unexported fields
}
GoValue represents an inherent Go value which can be converted to a Starlark value/type
func NewGoValue ¶
func NewGoValue(val interface{}) *GoValue
NewGoValue creates a value with inherent Go type
func (*GoValue) ToDict ¶
ToDict converts map v to a *starlark.Dict value where the key and value can be of an arbitrary types of string, bool, numeric, or []T.
func (*GoValue) ToList ¶
ToList converts v of type []T to a *starlark.List value where the elements can be of an arbitrary types of string, bool, numeric, or []T.
func (*GoValue) ToStarlarkStruct ¶
func (v *GoValue) ToStarlarkStruct(constructorName string) (*starlarkstruct.Struct, error)
ToStarlarkStruct converts a v of type struct or map to a *starlarkstruct.Struct value
func (*GoValue) ToStringDict ¶
func (v *GoValue) ToStringDict() (starlark.StringDict, error)
ToStringDict converts map v to a starlark.StringDict value where the key is expected to be a string and the value to be a string, bool, numeric, or []T.
Source Files
¶
- archive.go
- capa_provider.go
- capture.go
- capture_local.go
- capv_provider.go
- copy_from.go
- copy_to.go
- crashd_config.go
- doc.go
- govalue.go
- hostlist_provider.go
- kcp_provider.go
- kube_capture.go
- kube_config.go
- kube_exec.go
- kube_get.go
- kube_nodes_provider.go
- kube_port_forward.go
- log.go
- os_builtins.go
- prog_avail_local.go
- resources.go
- run.go
- run_local.go
- set_defaults.go
- ssh_config.go
- starlark_exec.go
- support.go