Class KubeConfigAuthProvider
Describes a Kubernetes user authentication provider configuration.
Namespace: Neon.Kube.Config
Assembly: Neon.Kube.dll
Syntax
public class KubeConfigAuthProvider
Constructors
KubeConfigAuthProvider()
Default constructor.
Declaration
public KubeConfigAuthProvider()
Properties
Config
The user properties.
Declaration
[JsonProperty(PropertyName = "config", Required = Required.Always)]
[YamlMember(Alias = "config", ApplyNamingConventions = false)]
public Dictionary<string, string> Config { get; set; }
Property Value
Type | Description |
---|---|
Dictionary<string, string> |
Name
The local nickname for the user.
Declaration
[JsonProperty(PropertyName = "name", Required = Required.Always)]
[YamlMember(Alias = "name", ApplyNamingConventions = false)]
public string Name { get; set; }
Property Value
Type | Description |
---|---|
string |