Windows Security Context Options Patch Args
data class WindowsSecurityContextOptionsPatchArgs(val gmsaCredentialSpec: Output<String>? = null, val gmsaCredentialSpecName: Output<String>? = null, val hostProcess: Output<Boolean>? = null, val runAsUserName: Output<String>? = null) : ConvertibleToJava<WindowsSecurityContextOptionsPatchArgs>
WindowsSecurityContextOptions contain Windows-specific options and credentials.
Constructors
Link copied to clipboard
fun WindowsSecurityContextOptionsPatchArgs(gmsaCredentialSpec: Output<String>? = null, gmsaCredentialSpecName: Output<String>? = null, hostProcess: Output<Boolean>? = null, runAsUserName: Output<String>? = null)
Functions
Properties
Link copied to clipboard
HostProcess determines if a container should be run as a 'Host Process' container. This field is alpha-level and will only be honored by components that enable the WindowsHostProcessContainers feature flag. Setting this field without the feature flag will result in errors when validating the Pod. All of a Pod's containers must have the same effective HostProcess value (it is not allowed to have a mix of HostProcess containers and non-HostProcess containers). In addition, if HostProcess is true then HostNetwork must also be set to true.