Show / Hide Table of Contents

Class RuntimeClassStrategyOptionsArgs

RuntimeClassStrategyOptions define the strategy that will dictate the allowable RuntimeClasses for a pod.

Inheritance
System.Object
InputArgs
ResourceArgs
RuntimeClassStrategyOptionsArgs
Inherited Members
ResourceArgs.Empty
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.Policy.V1Beta1
Assembly: Pulumi.Kubernetes.dll
Syntax
public class RuntimeClassStrategyOptionsArgs : ResourceArgs

Properties

View Source

AllowedRuntimeClassNames

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>
View Source

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>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.