KubectlConfigSetClusterSettings Class

Summary

Set a cluster entry in kubeconfig. Specifying a name that already exists will merge new fields on top of existing values for those fields.
Assembly
Cake.Kubectl.dll
Namespace
Cake.Kubectl
Base Types
graph BT Type-->Base0["AutoToolSettings"] click Base0 "/api/Cake.Kubectl/AutoToolSettings" Base0-->Base1["ToolSettings"] Type["KubectlConfigSetClusterSettings"] class Type type-node

Syntax

public sealed class KubectlConfigSetClusterSettings : AutoToolSettings

Examples

# Set only the server field on the e2e cluster entry without touching other values kubectl config set-cluster e2e --server=https://1.2.3.4 # Embed certificate authority data for the e2e cluster entry kubectl config set-cluster e2e --embed-certs --certificate-authority=~/.kube/e2e/kubernetes.ca.crt # Disable cert checking for the e2e cluster entry kubectl config set-cluster e2e --insecure-skip-tls-verify=true # Set custom TLS server name to use for validation for the e2e cluster entry kubectl config set-cluster e2e --tls-server-name=my-cluster-name # Set proxy url for the e2e cluster entry kubectl config set-cluster e2e --proxy-url=https://1.2.3.4

Attributes

Type Description
NullableContextAttribute
NullableAttribute
CompilerGeneratedAttribute

Constructors

Properties

Name Value Summary
CertificateAuthority string
--certificate-authority Path to certificate-authority file for the cluster entry in kubeconfig
EmbedCerts Nullable<bool>
--embed-certs embed-certs for the cluster entry in kubeconfig
InsecureSkipTlsVerify Nullable<bool>
--insecure-skip-tls-verify insecure-skip-tls-verify for the cluster entry in kubeconfig
ProxyUrl string
--proxy-url proxy-url for the cluster entry in kubeconfig
Server string
--server server for the cluster entry in kubeconfig
TlsServerName string
--tls-server-name tls-server-name for the cluster entry in kubeconfig

Extension Methods

Name Value Summary
Dump<KubectlConfigSetClusterSettings>() string
Get a basic string representation of specified object.
Requires the Cake.Incubator addin
IsIn<KubectlConfigSetClusterSettings>(KubectlConfigSetClusterSettings[]) bool
Checks if the source is contained in a list
Requires the Cake.Incubator addin
NotNull<KubectlConfigSetClusterSettings>(string) void
Throws an exception if the specified parameter's value is null.
Requires the Cake.Ftp addin
NotNull<KubectlConfigSetClusterSettings>(string) void
Throws an exception if the specified parameter's value is null.
Requires the Cake.Issues addin
ThrowIfNull<KubectlConfigSetClusterSettings>(string, string) T
Throws a System.ArgumentNullException with a specific message if the value is null, otherwise returns the value
Requires the Cake.Incubator addin
ThrowIfNull<KubectlConfigSetClusterSettings>(string) T
Throws a System.ArgumentNullException if the value is null, otherwise returns the value
Requires the Cake.Incubator addin
ToDictionary() IDictionary<string, object>
Requires the Cake.DeployParams addin