Class RuntimeClassStrategyOptionsArgs
RuntimeClassStrategyOptions define the strategy that will dictate the allowable RuntimeClasses for a pod.
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Kubernetes.Types.Inputs.Extensions.V1Beta1
Assembly: Pulumi.Kubernetes.dll
Syntax
public class RuntimeClassStrategyOptionsArgs : ResourceArgs
Properties
View SourceAllowedRuntimeClassNames
allowedRuntimeClassNames is a whitelist of RuntimeClass names that may be specified on a pod. A value of "*" means that any RuntimeClass name is allowed, and must be the only item in the list. An empty list requires the RuntimeClassName field to be unset.
Declaration
public InputList<string> AllowedRuntimeClassNames { get; set; }
Property Value
| Type | Description |
|---|---|
| InputList<System.String> |
DefaultRuntimeClassName
defaultRuntimeClassName is the default RuntimeClassName to set on the pod. The default MUST be allowed by the allowedRuntimeClassNames list. A value of nil does not mutate the Pod.
Declaration
public Input<string> DefaultRuntimeClassName { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |