This content is part of a third party extension that is not supported by the Cake project.
For more information about this extension see Cake.Kubectl.
Summary
Creates a proxy server or application-level gateway between localhost and the Kubernetes API server. It also allows serving static content over specified HTTP path. All incoming data enters through one port and gets forwarded to the remote Kubernetes API server port, except for the path matching the static content path.
- Assembly
- Cake
.Kubectl .dll - Namespace
- Cake
.Kubectl - Base Types
-
- ToolSettings
- AutoToolSettings
graph BT
Type-->Base0["AutoToolSettings"]
click Base0 "/api/Cake.Kubectl/AutoToolSettings"
Base0-->Base1["ToolSettings"]
Type["KubectlProxySettings"]
class Type type-node
Syntax
public sealed class KubectlProxySettings : AutoToolSettings
Examples
# To proxy all of the Kubernetes API and nothing else
kubectl proxy --api-prefix=/
# To proxy only part of the Kubernetes API and also some static files
# You can get pods info with 'curl localhost:8001/api/v1/pods'
kubectl proxy --www=/my/files --www-prefix=/static/ --api-prefix=/api/
# To proxy the entire Kubernetes API at a different root
# You can get pods info with 'curl localhost:8001/custom/api/v1/pods'
kubectl proxy --api-prefix=/custom/
# Run a proxy to the Kubernetes API server on port 8011, serving static content from ./local/www/
kubectl proxy --port=8011 --www=./local/www/
# Run a proxy to the Kubernetes API server on an arbitrary local port
# The chosen port for the server will be output to stdout
kubectl proxy --port=0
# Run a proxy to the Kubernetes API server, changing the API prefix to k8s-api
# This makes e.g. the pods API available at localhost:8001/k8s-api/v1/pods/
kubectl proxy --api-prefix=/k8s-api
Attributes
Type | Description |
---|---|
Nullable |
|
NullableAttribute | |
Compiler |
Constructors
Name | Summary |
---|---|
KubectlProxySettings |
Properties
Name | Value | Summary |
---|---|---|
AcceptHosts | string |
--accept-hosts
Regular expression for hosts that the proxy should accept.
|
AcceptPaths | string |
--accept-paths
Regular expression for paths that the proxy should accept.
|
Address | string |
--address
The IP address on which to serve on.
|
ApiPrefix | string |
--api-prefix
Prefix to serve the proxied API under.
|
AppendServerPath | Nullable |
--append-server-path
If true, enables automatic path appending of the kube context server path to each request.
|
DisableFilter | Nullable |
--disable-filter
If true, disable request filtering in the proxy. This is dangerous, and can leave you vulnerable to XSRF attacks, when used with an accessible port.
|
Keepalive | string |
--keepalive
keepalive specifies the keep-alive period for an active network connection. Set to 0 to disable keepalive.
|
Port | Nullable |
-p, --port
The port on which to run the proxy. Set to 0 to pick a random port.
|
RejectMethods | string |
--reject-methods
Regular expression for HTTP methods that the proxy should reject (example --reject-methods='POST,PUT,PATCH').
|
RejectPaths | string |
--reject-paths
Regular expression for paths that the proxy should reject. Paths specified here will be rejected even accepted by --accept-paths.
|
UnixSocket | string |
-u, --unix-socket
Unix socket on which to run the proxy.
|
Www | string |
-w, --www
Also serve static files from the given directory under the specified prefix.
|
WwwPrefix | string |
-P, --www-prefix
Prefix to serve static files under, if static file directory is specified.
|
Extension Methods
Name | Value | Summary |
---|---|---|
Dump |
string |
Get a basic string representation of specified object.
From LoggingExtensions
Requires the Cake.Incubator addin
|
IsIn |
bool |
Checks if the source is contained in a list
From EnumerableExtensions
Requires the Cake.Incubator addin
|
NotNull |
void |
From IssuesArgumentChecks
Requires the Cake.Issues addin
|
NotNull |
void |
Throws an exception if the specified parameter's value is null.
From Extensions
Requires the Cake.Ftp addin
|
ThrowIfNull |
T |
Throws a
System.ArgumentNullException with a specific message if the value is null, otherwise returns the value
From AssertExtensions
Requires the Cake.Incubator addin
|
ThrowIfNull |
T |
Throws a
System.ArgumentNullException if the value is null, otherwise returns the value
From AssertExtensions
Requires the Cake.Incubator addin
|
ToDictionary |
IDictionary |
From ObjectHelpers
Requires the Cake.DeployParams addin
|
To |
string |
From StringExtensions
Requires the Cake.Issues addin
|